building_data.js 1.77 MB
Newer Older
Volker Coors's avatar
Volker Coors committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
var building_data = {
    "type": "FeatureCollection",
    "name": "stoeckach_CityGML_footprint",
    "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
    "features": [
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00044893", "Latitude": 48.79366, "Longitude": 9.19967, "X_coordina": 3514742.38, "Y_coordina": 5406262.4, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 169.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 105.8, "Total_wall": 112.1, "Total_wa00": 0.0, "Total_outw": 223.3, "Total_shar": 203.4, "Total_roof": 105.8, "Gross_volu": 542.2, "Is_Gross_v": "false", "Heated_vol": 529.1, "Ridge_mean": 5.1, "Eaves_mean": 5.12, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.602, "Heated_are": 169.3, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 11.5, "Total_Year": 7505.0, "January_He": 656.0, "February_H": 335.0, "March_Heat": 100.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 11.0, "November_H": 210.0, "December_H": 624.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199668400875137, 48.793627204145146, 0.0 ], [ 9.199702096647973, 48.793646928901424, 0.0 ], [ 9.199697618833778, 48.793650353762331, 0.0 ], [ 9.199723538595041, 48.793665505894559, 0.0 ], [ 9.199625832807261, 48.793738243631118, 0.0 ], [ 9.199522971863693, 48.793677993256736, 0.0 ], [ 9.199609685512099, 48.793613367782044, 0.0 ], [ 9.199653066992546, 48.793638740948353, 0.0 ], [ 9.199668400875137, 48.793627204145146, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0004451a", "Latitude": 48.78942, "Longitude": 9.19882, "X_coordina": 3514681.18, "Y_coordina": 5405791.42, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1348.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 212.5, "Total_wall": 764.1, "Total_wa00": 0.0, "Total_outw": 992.9, "Total_shar": 263.9, "Total_roof": 379.1, "Gross_volu": 4427.7, "Is_Gross_v": "false", "Heated_vol": 4215.1, "Ridge_mean": 24.4, "Eaves_mean": 15.76, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 25, "Number_o00": 39, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.317, "Heated_are": 1348.8, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 29.0, "Total_Year": 60461.0, "January_He": 9746.0, "February_H": 6811.0, "March_Heat": 4334.0, "April_Heat": 896.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 68.0, "October_He": 1793.0, "November_H": 5904.0, "December_H": 9526.0, "PV_potenti": 14.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198655328834246, 48.789441663627315, 0.0 ], [ 9.198651321635619, 48.789391852845228, 0.0 ], [ 9.198886587819636, 48.789382634239423, 0.0 ], [ 9.198895870867631, 48.789493224279255, 0.0 ], [ 9.19866005589958, 48.789501454690537, 0.0 ], [ 9.198655328834246, 48.789441663627315, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0004402f", "Latitude": 48.78871, "Longitude": 9.20987, "X_coordina": 3515493.26, "Y_coordina": 5405714.75, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 102.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.7, "Total_wall": 120.1, "Total_wa00": 0.0, "Total_outw": 247.4, "Total_shar": 99.2, "Total_roof": 66.0, "Gross_volu": 367.5, "Is_Gross_v": "false", "Heated_vol": 319.8, "Ridge_mean": 9.6, "Eaves_mean": 5.88, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.689, "Heated_are": 102.3, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 63.4, "Total_Year": 8108.0, "January_He": 1611.0, "February_H": 1111.0, "March_Heat": 657.0, "April_Heat": 125.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 20.0, "October_He": 339.0, "November_H": 1042.0, "December_H": 1578.0, "PV_potenti": 2.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209767843735499, 48.788707154628931, 0.0 ], [ 9.209817372210455, 48.788705176004228, 0.0 ], [ 9.209871118686014, 48.788703009824033, 0.0 ], [ 9.209876932329244, 48.788759111586316, 0.0 ], [ 9.209822368885108, 48.788761189334053, 0.0 ], [ 9.20977256780243, 48.788763078533805, 0.0 ], [ 9.209772281756273, 48.788759751879837, 0.0 ], [ 9.209768705620348, 48.788718033820615, 0.0 ], [ 9.209767843735499, 48.788707154628931, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f91", "Latitude": 48.79333, "Longitude": 9.20857, "X_coordina": 3515396.88, "Y_coordina": 5406228.4, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 7653.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 973.9, "Total_wall": 3942.0, "Total_wa00": 0.0, "Total_outw": 4390.3, "Total_shar": 386.6, "Total_roof": 973.9, "Gross_volu": 23916.0, "Is_Gross_v": "false", "Heated_vol": 23916.0, "Ridge_mean": 27.8, "Eaves_mean": 27.81, "Storey_num": 11, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.246, "Heated_are": 7653.1, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 2.5, "Total_Year": 270927.0, "January_He": 7910.0, "February_H": 3088.0, "March_Heat": 432.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 14.0, "November_H": 1183.0, "December_H": 6813.0, "PV_potenti": 45.62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208571321170719, 48.79303672208124, 0.0 ], [ 9.208683916996936, 48.793046319770667, 0.0 ], [ 9.208601402665906, 48.793464254212722, 0.0 ], [ 9.20858779725101, 48.793531092072811, 0.0 ], [ 9.208558464584076, 48.793678260164377, 0.0 ], [ 9.208375747506015, 48.793662224833646, 0.0 ], [ 9.208399211019229, 48.793543753029653, 0.0 ], [ 9.208404408754518, 48.793517126245511, 0.0 ], [ 9.20840947373455, 48.793491309013433, 0.0 ], [ 9.208420805128998, 48.793434007188601, 0.0 ], [ 9.208417401097853, 48.793433653654951, 0.0 ], [ 9.208420466627427, 48.793418001404703, 0.0 ], [ 9.208483518189119, 48.79309820895331, 0.0 ], [ 9.208496983428281, 48.793030382194878, 0.0 ], [ 9.208571321170719, 48.79303672208124, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f93", "Latitude": 48.79287, "Longitude": 9.20854, "X_coordina": 3515394.75, "Y_coordina": 5406176.61, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 2698.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 536.9, "Total_wall": 1664.2, "Total_wa00": 0.0, "Total_outw": 1734.2, "Total_shar": 214.8, "Total_roof": 536.9, "Gross_volu": 8788.5, "Is_Gross_v": "false", "Heated_vol": 8434.2, "Ridge_mean": 16.4, "Eaves_mean": 16.38, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.32, "Heated_are": 2698.9, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 3.3, "Total_Year": 97708.0, "January_He": 3553.0, "February_H": 1451.0, "March_Heat": 228.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 9.0, "November_H": 621.0, "December_H": 3155.0, "PV_potenti": 24.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208532022165944, 48.792683753256192, 0.0 ], [ 9.208539282401745, 48.792695070481216, 0.0 ], [ 9.20853088177828, 48.792736990084812, 0.0 ], [ 9.208627957076288, 48.792745536849544, 0.0 ], [ 9.208571321170719, 48.79303672208124, 0.0 ], [ 9.208496983428281, 48.793030382194878, 0.0 ], [ 9.208483518189119, 48.79309820895331, 0.0 ], [ 9.208370243270293, 48.793088971991239, 0.0 ], [ 9.20844183937789, 48.792729148087638, 0.0 ], [ 9.208482684577211, 48.792732761017213, 0.0 ], [ 9.208487219571067, 48.792710451757571, 0.0 ], [ 9.208491221339759, 48.792690841170646, 0.0 ], [ 9.208497452861355, 48.792683815848854, 0.0 ], [ 9.208514717764773, 48.792679018639433, 0.0 ], [ 9.208532022165944, 48.792683753256192, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f94", "Latitude": 48.79345, "Longitude": 9.2082, "X_coordina": 3515369.53, "Y_coordina": 5406241.56, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1023.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 320.1, "Total_wall": 626.3, "Total_wa00": 0.0, "Total_outw": 626.3, "Total_shar": 388.0, "Total_roof": 320.1, "Gross_volu": 3282.5, "Is_Gross_v": "false", "Heated_vol": 3199.3, "Ridge_mean": 10.3, "Eaves_mean": 10.26, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.386, "Heated_are": 1023.8, "Mean_Uvalu": 0.43, "Specific_d": "32,9", "Specific_s": 6.4, "Total_Year": 40244.0, "January_He": 2363.0, "February_H": 1139.0, "March_Heat": 292.0, "April_Heat": 13.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 19.0, "November_H": 586.0, "December_H": 2192.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208366587515098, 48.793487969521969, 3.375920000375999 ], [ 9.20840947373455, 48.793491309013433, 3.375920000375999 ], [ 9.208404408754518, 48.793517126245511, 3.375920000375999 ], [ 9.208399211019229, 48.793543753029653, 3.375920000375999 ], [ 9.207984766143724, 48.793508083232133, 3.375920000375999 ], [ 9.207907023374181, 48.7935012994974, 3.375920000375999 ], [ 9.207913022742261, 48.793470984421425, 3.375920000375999 ], [ 9.208076401742199, 48.793484447644936, 3.375920000375999 ], [ 9.208093484361878, 48.793402586324319, 3.375920000375999 ], [ 9.208367971249448, 48.793427718222731, 3.375920000375999 ], [ 9.208355459579909, 48.793430078873229, 3.375920000375999 ], [ 9.20836384630608, 48.793450476350841, 3.375920000375999 ], [ 9.208351742563469, 48.793452746339298, 3.375920000375999 ], [ 9.208366587515098, 48.793487969521969, 3.375920000375999 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f95", "Latitude": 48.79385, "Longitude": 9.20787, "X_coordina": 3515344.65, "Y_coordina": 5406285.67, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1115.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 317.0, "Total_wall": 685.0, "Total_wa00": 0.0, "Total_outw": 1069.8, "Total_shar": 463.8, "Total_roof": 317.0, "Gross_volu": 3714.0, "Is_Gross_v": "false", "Heated_vol": 3485.5, "Ridge_mean": 11.7, "Eaves_mean": 11.72, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.367, "Heated_are": 1115.4, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 5.1, "Total_Year": 42380.0, "January_He": 2129.0, "February_H": 1006.0, "March_Heat": 204.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 10.0, "November_H": 481.0, "December_H": 1893.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207929964596966, 48.793783168477582, 0.0 ], [ 9.207920766736345, 48.793829945340939, 0.0 ], [ 9.207884637807901, 48.794012735256018, 0.0 ], [ 9.20773282665728, 48.793999430742709, 0.0 ], [ 9.20770287282048, 48.793996787064167, 0.0 ], [ 9.207734731012559, 48.793834327636333, 0.0 ], [ 9.207842291549172, 48.793843665459072, 0.0 ], [ 9.207865360352219, 48.793728161957858, 0.0 ], [ 9.20793942869987, 48.793734952355265, 0.0 ], [ 9.207929964596966, 48.793783168477582, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f96", "Latitude": 48.79401, "Longitude": 9.20785, "X_coordina": 3515343.43, "Y_coordina": 5406302.97, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 47.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 51.0, "Total_wall": 41.7, "Total_wa00": 0.0, "Total_outw": 144.1, "Total_shar": 80.1, "Total_roof": 51.0, "Gross_volu": 105.7, "Is_Gross_v": "false", "Heated_vol": 105.7, "Ridge_mean": 2.1, "Eaves_mean": 2.06, "Storey_num": 1, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.36, "Heated_are": 47.0, "Mean_Uvalu": 0.34, "Specific_d": "32,9", "Specific_s": 19.4, "Total_Year": 2460.0, "January_He": 284.0, "February_H": 169.0, "March_Heat": 62.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 9.0, "November_H": 120.0, "December_H": 268.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207725782468939, 48.794040448595553, 0.0 ], [ 9.20773282665728, 48.793999430742709, 0.0 ], [ 9.207884637807901, 48.794012735256018, 0.0 ], [ 9.207876229364611, 48.794052946268579, 0.0 ], [ 9.207725782468939, 48.794040448595553, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f97", "Latitude": 48.79373, "Longitude": 9.20802, "X_coordina": 3515355.79, "Y_coordina": 5406272.18, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 69.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 43.5, "Total_wall": 97.1, "Total_wa00": 0.0, "Total_outw": 198.4, "Total_shar": 78.8, "Total_roof": 43.5, "Gross_volu": 236.9, "Is_Gross_v": "false", "Heated_vol": 216.7, "Ridge_mean": 5.5, "Eaves_mean": 5.47, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.815, "Heated_are": 69.3, "Mean_Uvalu": 0.44, "Specific_d": "32,9", "Specific_s": 19.0, "Total_Year": 3595.0, "January_He": 439.0, "February_H": 212.0, "March_Heat": 67.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 11.0, "November_H": 156.0, "December_H": 429.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207944763914995, 48.793708595115213, 0.0 ], [ 9.208014472877919, 48.793714404176761, 0.0 ], [ 9.20800141437314, 48.793782050288897, 0.0 ], [ 9.207999947725281, 48.793789426670671, 0.0 ], [ 9.207929964596966, 48.793783168477582, 0.0 ], [ 9.20793942869987, 48.793734952355265, 0.0 ], [ 9.207944763914995, 48.793708595115213, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f98", "Latitude": 48.79353, "Longitude": 9.20784, "X_coordina": 3515343.17, "Y_coordina": 5406250.55, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 6592.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 940.2, "Total_wall": 2480.2, "Total_wa00": 0.0, "Total_outw": 2800.2, "Total_shar": 759.3, "Total_roof": 940.2, "Gross_volu": 17967.3, "Is_Gross_v": "false", "Heated_vol": 17967.3, "Ridge_mean": 19.7, "Eaves_mean": 19.66, "Storey_num": 8, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.243, "Heated_are": 6592.2, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 0.9, "Total_Year": 222487.0, "January_He": 2586.0, "February_H": 893.0, "March_Heat": 93.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 1.0, "November_H": 230.0, "December_H": 2067.0, "PV_potenti": 45.62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207877255912752, 48.79328014123675, 0.0 ], [ 9.207882838292655, 48.793280670701272, 0.0 ], [ 9.207949416698726, 48.793286575377223, 0.0 ], [ 9.207929820786127, 48.793386066237069, 0.0 ], [ 9.207920487638194, 48.793433023195057, 0.0 ], [ 9.207913022742261, 48.793470984421425, 0.0 ], [ 9.207907023374181, 48.7935012994974, 0.0 ], [ 9.207903824178896, 48.793517581440064, 0.0 ], [ 9.207907364685587, 48.793518024666085, 0.0 ], [ 9.207865360352219, 48.793728161957858, 0.0 ], [ 9.207842291549172, 48.793843665459072, 0.0 ], [ 9.207734731012559, 48.793834327636333, 0.0 ], [ 9.20766325109542, 48.793828161904912, 0.0 ], [ 9.207668185950492, 48.793803693795041, 0.0 ], [ 9.207674456218436, 48.793773018550297, 0.0 ], [ 9.207733679604679, 48.793480750046911, 0.0 ], [ 9.207648449458, 48.793473530025793, 0.0 ], [ 9.207653517047934, 48.793448252363532, 0.0 ], [ 9.207660854198949, 48.79341226970287, 0.0 ], [ 9.20768209310034, 48.793413939950206, 0.0 ], [ 9.207699296478575, 48.793328211755465, 0.0 ], [ 9.207699554947901, 48.793324884116942, 0.0 ], [ 9.207707417894042, 48.793284404325334, 0.0 ], [ 9.207711016904467, 48.793266053424013, 0.0 ], [ 9.207877255912752, 48.79328014123675, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f99", "Latitude": 48.7936, "Longitude": 9.20797, "X_coordina": 3515352.36, "Y_coordina": 5406257.62, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 224.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 140.3, "Total_wall": 134.0, "Total_wa00": 0.0, "Total_outw": 257.2, "Total_shar": 341.5, "Total_roof": 140.3, "Gross_volu": 816.9, "Is_Gross_v": "false", "Heated_vol": 702.3, "Ridge_mean": 5.8, "Eaves_mean": 5.82, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.534, "Heated_are": 224.7, "Mean_Uvalu": 0.36, "Specific_d": "32,9", "Specific_s": 9.7, "Total_Year": 9576.0, "January_He": 779.0, "February_H": 363.0, "March_Heat": 88.0, "April_Heat": 3.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 9.0, "November_H": 226.0, "December_H": 724.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207984766143724, 48.793508083232133, 0.0 ], [ 9.207944763914995, 48.793708595115213, 0.0 ], [ 9.20793942869987, 48.793734952355265, 0.0 ], [ 9.207865360352219, 48.793728161957858, 0.0 ], [ 9.207907364685587, 48.793518024666085, 0.0 ], [ 9.207903824178896, 48.793517581440064, 0.0 ], [ 9.207907023374181, 48.7935012994974, 0.0 ], [ 9.207984766143724, 48.793508083232133, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f9a", "Latitude": 48.79341, "Longitude": 9.20805, "X_coordina": 3515358.16, "Y_coordina": 5406237.3, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 404.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 112.1, "Total_wall": 158.6, "Total_wa00": 0.0, "Total_outw": 158.6, "Total_shar": 263.9, "Total_roof": 112.1, "Gross_volu": 1097.0, "Is_Gross_v": "false", "Heated_vol": 1097.0, "Ridge_mean": 9.8, "Eaves_mean": 9.78, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.349, "Heated_are": 404.8, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 1.6, "Total_Year": 13936.0, "January_He": 265.0, "February_H": 86.0, "March_Heat": 13.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 29.0, "December_H": 242.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207920487638194, 48.793433023195057, 2.627120000233987 ], [ 9.207929820786127, 48.793386066237069, 2.627120000233987 ], [ 9.207934722299088, 48.793386507004861, 2.627120000233987 ], [ 9.207934595115811, 48.793388665400329, 2.627120000233987 ], [ 9.208093484361878, 48.793402586324319, 2.627120000233987 ], [ 9.208076401742199, 48.793484447644936, 2.627120000233987 ], [ 9.207913022742261, 48.793470984421425, 2.627120000233987 ], [ 9.207920487638194, 48.793433023195057, 2.627120000233987 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f9b", "Latitude": 48.79336, "Longitude": 9.20762, "X_coordina": 3515327.0, "Y_coordina": 5406230.86, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 719.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 275.3, "Total_wall": 362.7, "Total_wa00": 0.0, "Total_outw": 362.7, "Total_shar": 108.7, "Total_roof": 275.3, "Gross_volu": 1696.0, "Is_Gross_v": "false", "Heated_vol": 1696.0, "Ridge_mean": 6.5, "Eaves_mean": 6.46, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.539, "Heated_are": 719.8, "Mean_Uvalu": 0.38, "Specific_d": "32,9", "Specific_s": 3.2, "Total_Year": 25963.0, "January_He": 905.0, "February_H": 359.0, "March_Heat": 56.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 2.0, "November_H": 157.0, "December_H": 831.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207690445806595, 48.79332723855854, 0.847039999979017 ], [ 9.207699296478575, 48.793328211755465, 0.847039999979017 ], [ 9.20768209310034, 48.793413939950206, 0.847039999979017 ], [ 9.207660854198949, 48.79341226970287, 0.847039999979017 ], [ 9.207653517047934, 48.793448252363532, 0.847039999979017 ], [ 9.207606543782617, 48.793443930799441, 0.847039999979017 ], [ 9.207600011698018, 48.793477124374327, 0.847039999979017 ], [ 9.207450379122914, 48.793463635713401, 0.847039999979017 ], [ 9.207459299590374, 48.79341551053075, 0.847039999979017 ], [ 9.207523944133879, 48.79331548896279, 0.847039999979017 ], [ 9.207539361401526, 48.793291631431075, 0.847039999979017 ], [ 9.207633060050476, 48.793309537170472, 0.847039999979017 ], [ 9.207639072429048, 48.793279042237145, 0.847039999979017 ], [ 9.207707417894042, 48.793284404325334, 0.847039999979017 ], [ 9.207699554947901, 48.793324884116942, 0.847039999979017 ], [ 9.20769125053774, 48.793324359552734, 0.847039999979017 ], [ 9.207690445806595, 48.79332723855854, 0.847039999979017 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f65", "Latitude": 48.78789, "Longitude": 9.19787, "X_coordina": 3514612.33, "Y_coordina": 5405620.5, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 232.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 106.6, "Total_wall": 261.3, "Total_wa00": 0.0, "Total_outw": 525.7, "Total_shar": 42.2, "Total_roof": 125.5, "Gross_volu": 833.6, "Is_Gross_v": "false", "Heated_vol": 727.0, "Ridge_mean": 9.5, "Eaves_mean": 5.78, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.64, "Heated_are": 232.6, "Mean_Uvalu": 0.43, "Specific_d": "15,8", "Specific_s": 49.4, "Total_Year": 15180.0, "January_He": 2842.0, "February_H": 1970.0, "March_Heat": 1197.0, "April_Heat": 253.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 34.0, "October_He": 598.0, "November_H": 1792.0, "December_H": 2799.0, "PV_potenti": 5.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197857116486839, 48.787875488815743, 0.0 ], [ 9.197923074054858, 48.7878986656983, 0.0 ], [ 9.197907773337651, 48.7879182953533, 0.0 ], [ 9.197913497825592, 48.787920533606474, 0.0 ], [ 9.197886280499546, 48.787955200989771, 0.0 ], [ 9.197880283835003, 48.787952963202954, 0.0 ], [ 9.197864709496518, 48.787972233627613, 0.0 ], [ 9.197800117322602, 48.787950223374203, 0.0 ], [ 9.197778723050781, 48.787942976304308, 0.0 ], [ 9.197769048159076, 48.787939755668738, 0.0 ], [ 9.197762795229103, 48.787941564880612, 0.0 ], [ 9.197743309009288, 48.787935033916575, 0.0 ], [ 9.197737952862907, 48.78792263364889, 0.0 ], [ 9.197746622141294, 48.787912367464941, 0.0 ], [ 9.19775559397778, 48.78790983419551, 0.0 ], [ 9.197799608368861, 48.787855354786707, 0.0 ], [ 9.197805195697867, 48.787857323509897, 0.0 ], [ 9.197818196395597, 48.787841114918507, 0.0 ], [ 9.197858398516313, 48.78785543363658, 0.0 ], [ 9.197845805734474, 48.787871551607957, 0.0 ], [ 9.197857116486839, 48.787875488815743, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043f66", "Latitude": 48.78797, "Longitude": 9.19787, "X_coordina": 3514611.59, "Y_coordina": 5405630.21, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 59.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 74.4, "Total_wall": 71.6, "Total_wa00": 0.0, "Total_outw": 216.6, "Total_shar": 41.9, "Total_roof": 74.4, "Gross_volu": 191.0, "Is_Gross_v": "false", "Heated_vol": 186.5, "Ridge_mean": 2.6, "Eaves_mean": 2.56, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.163, "Heated_are": 59.7, "Mean_Uvalu": 0.3, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197864709496518, 48.787972233627613, 0.0 ], [ 9.1979001394956, 48.78798422251522, 0.0 ], [ 9.197856830637766, 48.788045085328704, 0.0 ], [ 9.197769897469772, 48.788017358328013, 0.0 ], [ 9.197741626740974, 48.787991778634463, 0.0 ], [ 9.197778723050781, 48.787942976304308, 0.0 ], [ 9.197864709496518, 48.787972233627613, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043d42", "Latitude": 48.78822, "Longitude": 9.20192, "X_coordina": 3514909.18, "Y_coordina": 5405658.53, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 224.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 122.9, "Total_wall": 160.9, "Total_wa00": 0.0, "Total_outw": 320.3, "Total_shar": 82.3, "Total_roof": 122.9, "Gross_volu": 546.7, "Is_Gross_v": "false", "Heated_vol": 546.7, "Ridge_mean": 4.4, "Eaves_mean": 4.44, "Storey_num": 2, "Average_St": 2.2, "Number_of_": 3, "Number_o00": 7, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.744, "Heated_are": 224.3, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 39.0, "Total_Year": 12310.0, "January_He": 2248.0, "February_H": 1496.0, "March_Heat": 871.0, "April_Heat": 167.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 17.0, "October_He": 391.0, "November_H": 1340.0, "December_H": 2221.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201953657244962, 48.788222227027958, 0.0 ], [ 9.20196017023855, 48.788285252088357, 0.0 ], [ 9.201939485615373, 48.788285468210056, 0.0 ], [ 9.201792396341023, 48.788291121471005, 0.0 ], [ 9.20178304282434, 48.788198426571981, 0.0 ], [ 9.201931354452169, 48.788192231637488, 0.0 ], [ 9.201934065317584, 48.788223430392598, 0.0 ], [ 9.201953657244962, 48.788222227027958, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043c78", "Latitude": 48.79035, "Longitude": 9.2049, "X_coordina": 3515127.91, "Y_coordina": 5405895.75, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1245.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 206.0, "Total_wall": 631.7, "Total_wa00": 0.0, "Total_outw": 821.5, "Total_shar": 458.8, "Total_roof": 293.6, "Gross_volu": 3934.3, "Is_Gross_v": "false", "Heated_vol": 3893.2, "Ridge_mean": 22.2, "Eaves_mean": 15.92, "Storey_num": 8, "Average_St": 2.8, "Number_of_": 20, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.289, "Heated_are": 1245.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 31.0, "Total_Year": 58392.0, "January_He": 9364.0, "February_H": 6683.0, "March_Heat": 4467.0, "April_Heat": 1176.0, "May_Heatin": 37.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 99.0, "October_He": 1906.0, "November_H": 5773.0, "December_H": 9153.0, "PV_potenti": 14.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204970814263651, 48.790378660580103, 0.0 ], [ 9.204968834182624, 48.790427132936983, 0.0 ], [ 9.204890301243855, 48.790425564140598, 0.0 ], [ 9.204822384704665, 48.790424246179647, 0.0 ], [ 9.204740583700261, 48.790422233475681, 0.0 ], [ 9.204742422053711, 48.790372322596731, 0.0 ], [ 9.204744494540996, 48.790313059244163, 0.0 ], [ 9.204744490516561, 48.790312070091439, 0.0 ], [ 9.204973421332545, 48.790317058257727, 0.0 ], [ 9.204972668503149, 48.790332706308227, 0.0 ], [ 9.204970814263651, 48.790378660580103, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043c79", "Latitude": 48.79025, "Longitude": 9.20498, "X_coordina": 3515133.96, "Y_coordina": 5405884.31, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 32.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 40.1, "Total_wall": 50.5, "Total_wa00": 0.0, "Total_outw": 156.5, "Total_shar": 44.0, "Total_roof": 40.1, "Gross_volu": 126.7, "Is_Gross_v": "false", "Heated_vol": 102.3, "Ridge_mean": 3.2, "Eaves_mean": 3.16, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.127, "Heated_are": 32.7, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204980719496628, 48.79023773263053, 0.0 ], [ 9.204978377301375, 48.79029753600998, 0.0 ], [ 9.204897125263274, 48.790296601523465, 0.0 ], [ 9.204899327068331, 48.790235719311966, 0.0 ], [ 9.204980719496628, 48.79023773263053, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043c7b", "Latitude": 48.79015, "Longitude": 9.20491, "X_coordina": 3515128.63, "Y_coordina": 5405873.46, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 190.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 116.6, "Total_wall": 208.4, "Total_wa00": 0.0, "Total_outw": 373.0, "Total_shar": 133.3, "Total_roof": 117.4, "Gross_volu": 655.3, "Is_Gross_v": "false", "Heated_vol": 594.9, "Ridge_mean": 6.3, "Eaves_mean": 5.15, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.678, "Heated_are": 190.4, "Mean_Uvalu": 0.45, "Specific_d": "14,6", "Specific_s": 67.0, "Total_Year": 15540.0, "January_He": 3127.0, "February_H": 2140.0, "March_Heat": 1324.0, "April_Heat": 349.0, "May_Heatin": 30.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 688.0, "November_H": 1953.0, "December_H": 3075.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204927805778732, 48.790177488051164, 0.0 ], [ 9.20498210224045, 48.790209673998156, 0.0 ], [ 9.204980719496628, 48.79023773263053, 0.0 ], [ 9.204899327068331, 48.790235719311966, 0.0 ], [ 9.20479699892684, 48.790172415256968, 0.0 ], [ 9.204749903476454, 48.79017070052889, 0.0 ], [ 9.20475151865311, 48.790132839810397, 0.0 ], [ 9.204795753518914, 48.790100478570444, 0.0 ], [ 9.204927805778732, 48.790177488051164, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043989", "Latitude": 48.79071, "Longitude": 9.20609, "X_coordina": 3515214.81, "Y_coordina": 5405935.98, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 454.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 166.4, "Total_wall": 377.6, "Total_wa00": 0.0, "Total_outw": 668.9, "Total_shar": 0.0, "Total_roof": 260.7, "Gross_volu": 1587.5, "Is_Gross_v": "false", "Heated_vol": 1421.0, "Ridge_mean": 12.5, "Eaves_mean": 6.55, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 6, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.538, "Heated_are": 454.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.6, "Total_Year": 28840.0, "January_He": 5382.0, "February_H": 3701.0, "March_Heat": 2228.0, "April_Heat": 449.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 58.0, "October_He": 1094.0, "November_H": 3399.0, "December_H": 5309.0, "PV_potenti": 11.99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205971491879849, 48.790804911562553, 0.0 ], [ 9.205976988585773, 48.790651581963033, 0.0 ], [ 9.20604544983623, 48.790652898268945, 0.0 ], [ 9.20611078055615, 48.790654130213582, 0.0 ], [ 9.206103784638959, 48.790806833037337, 0.0 ], [ 9.206038182636483, 48.790805871344944, 0.0 ], [ 9.205971491879849, 48.790804911562553, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043691", "Latitude": 48.78938, "Longitude": 9.20378, "X_coordina": 3515045.87, "Y_coordina": 5405787.28, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3051, "PrimaryUsa": "health care", "PrimaryU00": 10352.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 1507.9, "Total_wall": 3983.8, "Total_wa00": 0.0, "Total_outw": 6494.2, "Total_shar": 1210.2, "Total_roof": 2501.8, "Gross_volu": 33858.0, "Is_Gross_v": "false", "Heated_vol": 32350.1, "Ridge_mean": 33.7, "Eaves_mean": 2.22, "Storey_num": 12, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.243, "Heated_are": 10352.0, "Mean_Uvalu": 0.47, "Specific_d": "155,5", "Specific_s": 111.0, "Total_Year": 2759181.0, "January_He": 230982.0, "February_H": 182475.0, "March_Heat": 147639.0, "April_Heat": 76176.0, "May_Heatin": 20861.0, "June_Heati": 2128, "July_Heati": 384, "August_Hea": 640, "September_": 26336.0, "October_He": 82599.0, "November_H": 157474.0, "December_H": 221436.0, "PV_potenti": 111.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203848145432007, 48.789431509431161, 0.0 ], [ 9.203852278200978, 48.789477453094008, 0.0 ], [ 9.203855280722996, 48.789513147462635, 0.0 ], [ 9.203801532387191, 48.789515130992811, 0.0 ], [ 9.203804536332258, 48.789551185054549, 0.0 ], [ 9.203701394125803, 48.789555054416368, 0.0 ], [ 9.203698389526357, 48.789518820505862, 0.0 ], [ 9.203643552449144, 48.789520805888195, 0.0 ], [ 9.203642699878273, 48.789511904955873, 0.0 ], [ 9.203638817283235, 48.789460475501549, 0.0 ], [ 9.203634395427116, 48.789410305931128, 0.0 ], [ 9.203581871281926, 48.789412107346877, 0.0 ], [ 9.203561595931269, 48.789412682730649, 0.0 ], [ 9.203561291741059, 48.789404769988224, 0.0 ], [ 9.203469036716848, 48.789408529973123, 0.0 ], [ 9.203386714855391, 48.789411912646564, 0.0 ], [ 9.203367665410093, 48.78941275560198, 0.0 ], [ 9.203298406075659, 48.789415575601488, 0.0 ], [ 9.203300566590221, 48.78944506674042, 0.0 ], [ 9.203302005602705, 48.789464397781927, 0.0 ], [ 9.203303597417962, 48.78948786504089, 0.0 ], [ 9.203234746249676, 48.789490684281503, 0.0 ], [ 9.20318684982751, 48.789492657197201, 0.0 ], [ 9.203185116529559, 48.789467841331742, 0.0 ], [ 9.203171696962004, 48.789278845520776, 0.0 ], [ 9.203296062944345, 48.789273500388731, 0.0 ], [ 9.20329834319489, 48.789298944753263, 0.0 ], [ 9.203623141420291, 48.789286051362275, 0.0 ], [ 9.203622845225754, 48.789280116925781, 0.0 ], [ 9.203829261321678, 48.789271568704102, 0.0 ], [ 9.203829695816204, 48.78927804243714, 0.0 ], [ 9.204153679047495, 48.789265598611564, 0.0 ], [ 9.204151676383747, 48.789241592549914, 0.0 ], [ 9.204281622235927, 48.789236326385819, 0.0 ], [ 9.204283333799481, 48.789255656932319, 0.0 ], [ 9.204298998066747, 48.789426663905274, 0.0 ], [ 9.204301135804103, 48.789450399953061, 0.0 ], [ 9.204183021651703, 48.789453756764779, 0.0 ], [ 9.204181295161186, 48.789430739374765, 0.0 ], [ 9.204177696243734, 48.789382276914907, 0.0 ], [ 9.203915486549498, 48.789391913730071, 0.0 ], [ 9.203916198338904, 48.789399645902542, 0.0 ], [ 9.203845576689305, 48.789402108948671, 0.0 ], [ 9.203848145432007, 48.789431509431161, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043692", "Latitude": 48.78917, "Longitude": 9.20464, "X_coordina": 3515108.88, "Y_coordina": 5405764.6, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3051, "PrimaryUsa": "health care", "PrimaryU00": 47.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 26.0, "Total_wall": 105.5, "Total_wa00": 0.0, "Total_outw": 105.5, "Total_shar": 0.0, "Total_roof": 45.0, "Gross_volu": 123.8, "Is_Gross_v": "false", "Heated_vol": 123.8, "Ridge_mean": 4.7, "Eaves_mean": 4.71, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.425, "Heated_are": 47.6, "Mean_Uvalu": 0.44, "Specific_d": "155,5", "Specific_s": 149.2, "Total_Year": 14512.0, "January_He": 1534.0, "February_H": 1155.0, "March_Heat": 873.0, "April_Heat": 379.0, "May_Heatin": 76.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 0, "September_": 109.0, "October_He": 473.0, "November_H": 1011.0, "December_H": 1490.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204642152740931, 48.789175437430167, 0.0 ], [ 9.204650453817084, 48.789208784349398, 0.0 ], [ 9.204543910487624, 48.789212750433371, 0.0 ], [ 9.20453740898807, 48.789186863972454, 0.0 ], [ 9.204642152740931, 48.789175437430167, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043693", "Latitude": 48.78939, "Longitude": 9.20459, "X_coordina": 3515105.16, "Y_coordina": 5405789.55, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3051, "PrimaryUsa": "health care", "PrimaryU00": 13217.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 2467.3, "Total_wall": 4582.3, "Total_wa00": 0.0, "Total_outw": 6118.2, "Total_shar": 425.6, "Total_roof": 2467.3, "Gross_volu": 43759.3, "Is_Gross_v": "false", "Heated_vol": 41304.1, "Ridge_mean": 22.0, "Eaves_mean": 21.96, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.223, "Heated_are": 13217.3, "Mean_Uvalu": 0.34, "Specific_d": "155,5", "Specific_s": 112.7, "Total_Year": 3545177.0, "January_He": 291148.0, "February_H": 233412.0, "March_Heat": 193324.0, "April_Heat": 105844.0, "May_Heatin": 33227.0, "June_Heati": 3985, "July_Heati": 793, "August_Hea": 1237, "September_": 38815.0, "October_He": 109216.0, "November_H": 200375.0, "December_H": 278115.0, "PV_potenti": 117.31 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204606663856067, 48.789484298267283, 0.0 ], [ 9.204609375353735, 48.789515227180623, 0.0 ], [ 9.204607606900693, 48.789515410170011, 0.0 ], [ 9.204541475399383, 48.789517685817287, 0.0 ], [ 9.204541619165679, 48.789519573958295, 0.0 ], [ 9.20437860575464, 48.789525708419703, 0.0 ], [ 9.204284575309432, 48.789595026538606, 0.0 ], [ 9.20423952729357, 48.789628198340075, 0.0 ], [ 9.203937857104185, 48.789639703656825, 0.0 ], [ 9.203935538083673, 48.78963835890913, 0.0 ], [ 9.203883970926546, 48.789607696335665, 0.0 ], [ 9.203883409074198, 48.789603380995928, 0.0 ], [ 9.203885994445342, 48.789603286494966, 0.0 ], [ 9.203883996266967, 48.789580359505756, 0.0 ], [ 9.203878130548054, 48.789509779836628, 0.0 ], [ 9.203854998705799, 48.789510720023692, 0.0 ], [ 9.203852278200978, 48.789477453094008, 0.0 ], [ 9.203872688936642, 48.789476697572169, 0.0 ], [ 9.203872122350994, 48.789471213233391, 0.0 ], [ 9.203896342538279, 48.789470181192243, 0.0 ], [ 9.203926822180728, 48.789468958214407, 0.0 ], [ 9.203930223726353, 48.78946877234349, 0.0 ], [ 9.203948129062733, 48.789454262928516, 0.0 ], [ 9.20409930493984, 48.789448779522097, 0.0 ], [ 9.204122489635671, 48.789460878119691, 0.0 ], [ 9.204187667715759, 48.789458424556052, 0.0 ], [ 9.204187239376076, 48.789453479515508, 0.0 ], [ 9.204300722530094, 48.789449168732411, 0.0 ], [ 9.204284148881776, 48.789255295791861, 0.0 ], [ 9.204344291708431, 48.789252940995304, 0.0 ], [ 9.204341846726779, 48.789220572823169, 0.0 ], [ 9.204843130914327, 48.789201877352191, 0.0 ], [ 9.204843277985166, 48.789204574799832, 0.0 ], [ 9.204873213082111, 48.789203352540248, 0.0 ], [ 9.204872794195254, 48.789200745499869, 0.0 ], [ 9.205139627572333, 48.789190558727945, 0.0 ], [ 9.205146042680896, 48.789261946671033, 0.0 ], [ 9.205234579151831, 48.789314214398473, 0.0 ], [ 9.205040684995485, 48.789456729063652, 0.0 ], [ 9.204991573215635, 48.789427591314791, 0.0 ], [ 9.204667588791185, 48.78943994757396, 0.0 ], [ 9.204671017715945, 48.789479957498358, 0.0 ], [ 9.204671160389839, 48.789481575870234, 0.0 ], [ 9.204606663856067, 48.789484298267283, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043694", "Latitude": 48.7896, "Longitude": 9.20417, "X_coordina": 3515074.15, "Y_coordina": 5405812.74, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 40.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.2, "Total_wall": 88.0, "Total_wa00": 0.0, "Total_outw": 278.3, "Total_shar": 218.5, "Total_roof": 49.2, "Gross_volu": 150.6, "Is_Gross_v": "false", "Heated_vol": 125.5, "Ridge_mean": 3.1, "Eaves_mean": 3.06, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 1.355, "Heated_are": 40.2, "Mean_Uvalu": 0.62, "Specific_d": "32,9", "Specific_s": 71.2, "Total_Year": 4179.0, "January_He": 801.0, "February_H": 522.0, "March_Heat": 260.0, "April_Heat": 31.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 60.0, "November_H": 419.0, "December_H": 766.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203935538083673, 48.78963835890913, 0.0 ], [ 9.203937857104185, 48.789639703656825, 0.0 ], [ 9.20423952729357, 48.789628198340075, 0.0 ], [ 9.204284575309432, 48.789595026538606, 0.0 ], [ 9.20430899479612, 48.78960955084608, 0.0 ], [ 9.204255806845193, 48.789649031749448, 0.0 ], [ 9.204143548899156, 48.789653547140531, 0.0 ], [ 9.204142414570585, 48.78964230869709, 0.0 ], [ 9.203936810643903, 48.789650136651602, 0.0 ], [ 9.203935538083673, 48.78963835890913, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043695", "Latitude": 48.78953, "Longitude": 9.20376, "X_coordina": 3515044.12, "Y_coordina": 5405804.24, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 115.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 125.6, "Total_wall": 58.7, "Total_wa00": 0.0, "Total_outw": 350.0, "Total_shar": 523.1, "Total_roof": 125.6, "Gross_volu": 271.5, "Is_Gross_v": "false", "Heated_vol": 271.5, "Ridge_mean": 2.1, "Eaves_mean": 2.14, "Storey_num": 1, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.142, "Heated_are": 115.8, "Mean_Uvalu": 0.43, "Specific_d": "32,9", "Specific_s": 26.4, "Total_Year": 6862.0, "January_He": 882.0, "February_H": 578.0, "March_Heat": 274.0, "April_Heat": 28.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 49.0, "November_H": 418.0, "December_H": 829.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203854998705799, 48.789510720023692, 0.0 ], [ 9.203860536738913, 48.789510494403302, 0.0 ], [ 9.20386464580608, 48.789574099109046, 0.0 ], [ 9.2035673362296, 48.789586944590887, 0.0 ], [ 9.203561930877447, 48.789529133248294, 0.0 ], [ 9.203577579176194, 48.789528566044325, 0.0 ], [ 9.203576297609073, 48.789514540222669, 0.0 ], [ 9.203642699878273, 48.789511904955873, 0.0 ], [ 9.203643552449144, 48.789520805888195, 0.0 ], [ 9.203698389526357, 48.789518820505862, 0.0 ], [ 9.203701394125803, 48.789555054416368, 0.0 ], [ 9.203804536332258, 48.789551185054549, 0.0 ], [ 9.203801532387191, 48.789515130992811, 0.0 ], [ 9.203855280722996, 48.789513147462635, 0.0 ], [ 9.203854998705799, 48.789510720023692, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043698", "Latitude": 48.78976, "Longitude": 9.2036, "X_coordina": 3515032.57, "Y_coordina": 5405829.86, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3051, "PrimaryUsa": "health care", "PrimaryU00": 13022.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 1568.6, "Total_wall": 4735.5, "Total_wa00": 0.0, "Total_outw": 5727.8, "Total_shar": 1179.6, "Total_roof": 1568.6, "Gross_volu": 35938.6, "Is_Gross_v": "false", "Heated_vol": 35938.6, "Ridge_mean": 27.3, "Eaves_mean": 27.34, "Storey_num": 11, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.219, "Heated_are": 13022.5, "Mean_Uvalu": 0.4, "Specific_d": "155,5", "Specific_s": 103.5, "Total_Year": 3373856.0, "January_He": 267253.0, "February_H": 213440.0, "March_Heat": 174430.0, "April_Heat": 92275.0, "May_Heatin": 26733.0, "June_Heati": 2975, "July_Heati": 595, "August_Hea": 949, "September_": 33060.0, "October_He": 98175.0, "November_H": 183448.0, "December_H": 255129.0, "PV_potenti": 72.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20367785803843, 48.790128628965597, 0.0 ], [ 9.203609330405101, 48.790036713316027, 0.0 ], [ 9.203617458004057, 48.790034046198436, 0.0 ], [ 9.203553007801055, 48.789947473760257, 0.0 ], [ 9.203530852764432, 48.789954437038723, 0.0 ], [ 9.203395665963694, 48.789774648780423, 0.0 ], [ 9.203419042858295, 48.789766963980341, 0.0 ], [ 9.20332925529922, 48.789647299307987, 0.0 ], [ 9.203319768649111, 48.789650418423115, 0.0 ], [ 9.203248207114569, 48.78955504584787, 0.0 ], [ 9.203285582797498, 48.789542750261106, 0.0 ], [ 9.203246312535462, 48.789490304173789, 0.0 ], [ 9.203303597417962, 48.78948786504089, 0.0 ], [ 9.203298406075659, 48.789415575601488, 0.0 ], [ 9.203367665410093, 48.78941275560198, 0.0 ], [ 9.203386714855391, 48.789411912646564, 0.0 ], [ 9.203475160076458, 48.789408339306519, 0.0 ], [ 9.20347724884215, 48.78943352322672, 0.0 ], [ 9.203482446485115, 48.78949384381071, 0.0 ], [ 9.203574293864312, 48.789490201436493, 0.0 ], [ 9.203577579176194, 48.789528566044325, 0.0 ], [ 9.203561930877447, 48.789529133248294, 0.0 ], [ 9.2035673362296, 48.789586944590887, 0.0 ], [ 9.203591420751476, 48.789586002777313, 0.0 ], [ 9.203591986944101, 48.789591397194428, 0.0 ], [ 9.203594668357242, 48.789615042369775, 0.0 ], [ 9.203624572051156, 48.789673260012364, 0.0 ], [ 9.203636400734348, 48.789670451463422, 0.0 ], [ 9.203671240567401, 48.789737742651482, 0.0 ], [ 9.203628818524381, 48.78974734957729, 0.0 ], [ 9.203661384128173, 48.789790725102804, 0.0 ], [ 9.203698607049473, 48.789774293165664, 0.0 ], [ 9.203758318738787, 48.789833357278269, 0.0 ], [ 9.203747450677568, 48.789838142459907, 0.0 ], [ 9.203802241332967, 48.789891819837891, 0.0 ], [ 9.203793139183684, 48.789895792585853, 0.0 ], [ 9.203847793858346, 48.7899494701823, 0.0 ], [ 9.203835159858954, 48.789955067810752, 0.0 ], [ 9.203862760878177, 48.789982265812057, 0.0 ], [ 9.203842520632962, 48.789991563775018, 0.0 ], [ 9.203867660354659, 48.790015888575617, 0.0 ], [ 9.20385582591865, 48.790050889817145, 0.0 ], [ 9.203833769713533, 48.790115853718376, 0.0 ], [ 9.203755981373149, 48.790150162358024, 0.0 ], [ 9.203720127555018, 48.790114885805387, 0.0 ], [ 9.20367785803843, 48.790128628965597, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043613", "Latitude": 48.78886, "Longitude": 9.21332, "X_coordina": 3515747.05, "Y_coordina": 5405731.96, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 219.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 97.9, "Total_wall": 177.0, "Total_wa00": 0.0, "Total_outw": 349.1, "Total_shar": 106.9, "Total_roof": 122.4, "Gross_volu": 783.3, "Is_Gross_v": "false", "Heated_vol": 685.4, "Ridge_mean": 9.8, "Eaves_mean": 6.56, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 3, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.547, "Heated_are": 219.3, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 46.6, "Total_Year": 13690.0, "January_He": 2560.0, "February_H": 1749.0, "March_Heat": 1053.0, "April_Heat": 214.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 24.0, "October_He": 477.0, "November_H": 1580.0, "December_H": 2550.0, "PV_potenti": 5.13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213351962234801, 48.788880597476094, 0.0 ], [ 9.213358385504199, 48.788919072897194, 0.0 ], [ 9.213197943327804, 48.788921078583066, 0.0 ], [ 9.21319530411496, 48.788844198750041, 0.0 ], [ 9.213345537831733, 48.788841852285536, 0.0 ], [ 9.213351961472389, 48.788880417630224, 0.0 ], [ 9.213351962234801, 48.788880597476094, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000435bc", "Latitude": 48.78859, "Longitude": 9.19523, "X_coordina": 3514418.09, "Y_coordina": 5405698.03, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3044, "PrimaryUsa": "office and administration", "PrimaryU00": 770.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 210.2, "Total_wall": 393.4, "Total_wa00": 0.0, "Total_outw": 560.4, "Total_shar": 346.0, "Total_roof": 211.1, "Gross_volu": 2138.9, "Is_Gross_v": "false", "Heated_vol": 1988.6, "Ridge_mean": 10.8, "Eaves_mean": 9.35, "Storey_num": 4, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.381, "Heated_are": 770.9, "Mean_Uvalu": 0.48, "Specific_d": "14,6", "Specific_s": 45.9, "Total_Year": 46684.0, "January_He": 8010.0, "February_H": 6053.0, "March_Heat": 4330.0, "April_Heat": 1448.0, "May_Heatin": 125.0, "June_Heati": 3, "July_Heati": 0, "August_Hea": 1, "September_": 306.0, "October_He": 2197.0, "November_H": 5264.0, "December_H": 7683.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195159864935675, 48.788508568030814, 0.0 ], [ 9.195327357802123, 48.788605221741825, 0.0 ], [ 9.195190443291509, 48.788708326551571, 0.0 ], [ 9.195148163994102, 48.788684748289363, 0.0 ], [ 9.19517010298796, 48.78865701462437, 0.0 ], [ 9.195052529857586, 48.788588961784768, 0.0 ], [ 9.195060128864871, 48.788583283723128, 0.0 ], [ 9.195159864935675, 48.788508568030814, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000435bd", "Latitude": 48.78851, "Longitude": 9.19529, "X_coordina": 3514422.43, "Y_coordina": 5405689.96, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3044, "PrimaryUsa": "office and administration", "PrimaryU00": 111.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 61.2, "Total_wall": 91.6, "Total_wa00": 0.0, "Total_outw": 183.1, "Total_shar": 194.8, "Total_roof": 61.2, "Gross_volu": 282.9, "Is_Gross_v": "false", "Heated_vol": 282.9, "Ridge_mean": 4.6, "Eaves_mean": 4.62, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.756, "Heated_are": 111.1, "Mean_Uvalu": 0.41, "Specific_d": "14,6", "Specific_s": 51.0, "Total_Year": 7293.0, "January_He": 1418.0, "February_H": 942.0, "March_Heat": 583.0, "April_Heat": 150.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 31.0, "October_He": 299.0, "November_H": 849.0, "December_H": 1386.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195182661879715, 48.788491533823034, 0.0 ], [ 9.19521726605514, 48.788466116695304, 0.0 ], [ 9.195337669828767, 48.788597290968752, 0.0 ], [ 9.195327357802123, 48.788605221741825, 0.0 ], [ 9.195159864935675, 48.788508568030814, 0.0 ], [ 9.195167463570002, 48.788502800039012, 0.0 ], [ 9.195182661879715, 48.788491533823034, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043188", "Latitude": 48.79175, "Longitude": 9.20376, "X_coordina": 3515043.75, "Y_coordina": 5406050.81, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 98.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.5, "Total_wall": 59.8, "Total_wa00": 0.0, "Total_outw": 135.0, "Total_shar": 200.8, "Total_roof": 60.8, "Gross_volu": 354.7, "Is_Gross_v": "false", "Heated_vol": 308.1, "Ridge_mean": 9.3, "Eaves_mean": 5.99, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.505, "Heated_are": 98.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.9, "Total_Year": 6091.0, "January_He": 1151.0, "February_H": 783.0, "March_Heat": 437.0, "April_Heat": 67.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 220.0, "November_H": 730.0, "December_H": 1130.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203762192730382, 48.791798451201551, 0.0 ], [ 9.203708681384192, 48.791792341144017, 0.0 ], [ 9.203658029184783, 48.791786495776051, 0.0 ], [ 9.203672105021498, 48.791733505880977, 0.0 ], [ 9.203722893266326, 48.791739351002136, 0.0 ], [ 9.203776540655019, 48.791745460812386, 0.0 ], [ 9.203762192730382, 48.791798451201551, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0004312e", "Latitude": 48.79193, "Longitude": 9.20285, "X_coordina": 3514976.68, "Y_coordina": 5406071.68, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 912.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 214.1, "Total_wall": 625.1, "Total_wa00": 0.0, "Total_outw": 918.2, "Total_shar": 208.1, "Total_roof": 251.1, "Gross_volu": 2914.4, "Is_Gross_v": "false", "Heated_vol": 2852.8, "Ridge_mean": 15.3, "Eaves_mean": 11.63, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 11, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.379, "Heated_are": 912.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 37.0, "Total_Year": 48262.0, "January_He": 8538.0, "February_H": 5852.0, "March_Heat": 3445.0, "April_Heat": 625.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 63.0, "October_He": 1604.0, "November_H": 5277.0, "December_H": 8381.0, "PV_potenti": 12.97 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202705247492977, 48.792033398488002, 0.0 ], [ 9.202725630427448, 48.791957916709329, 0.0 ], [ 9.202731621262787, 48.791958535628012, 0.0 ], [ 9.202758579061715, 48.791859752055338, 0.0 ], [ 9.202828158565222, 48.791867992420578, 0.0 ], [ 9.202905226716666, 48.791877028861656, 0.0 ], [ 9.202883358248402, 48.791955300921913, 0.0 ], [ 9.202876004621872, 48.791954234793984, 0.0 ], [ 9.202870371900969, 48.791974927144594, 0.0 ], [ 9.20287214225942, 48.791975193796588, 0.0 ], [ 9.202851895998178, 48.792050765283818, 0.0 ], [ 9.20278163538614, 48.792042436208909, 0.0 ], [ 9.202705247492977, 48.792033398488002, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0004312f", "Latitude": 48.79216, "Longitude": 9.20296, "X_coordina": 3514985.02, "Y_coordina": 5406096.27, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 46.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 50.5, "Total_wall": 68.3, "Total_wa00": 0.0, "Total_outw": 221.0, "Total_shar": 0.0, "Total_roof": 50.8, "Gross_volu": 115.6, "Is_Gross_v": "false", "Heated_vol": 101.2, "Ridge_mean": 2.6, "Eaves_mean": 1.99, "Storey_num": 1, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.467, "Heated_are": 46.8, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202984747708728, 48.792156730954446, 0.0 ], [ 9.202971890476389, 48.792208369759841, 0.0 ], [ 9.202854520014899, 48.792195267879229, 0.0 ], [ 9.20286860369837, 48.79214398662063, 0.0 ], [ 9.202984747708728, 48.792156730954446, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00043130", "Latitude": 48.79193, "Longitude": 9.20327, "X_coordina": 3515007.94, "Y_coordina": 5406071.65, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 36.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 40.2, "Total_wall": 31.9, "Total_wa00": 0.0, "Total_outw": 111.1, "Total_shar": 104.1, "Total_roof": 40.2, "Gross_volu": 97.9, "Is_Gross_v": "false", "Heated_vol": 97.9, "Ridge_mean": 2.4, "Eaves_mean": 2.44, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.148, "Heated_are": 36.3, "Mean_Uvalu": 0.36, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203263101232052, 48.791928463505414, 0.0 ], [ 9.203279849232105, 48.79193041226187, 0.0 ], [ 9.203264837315853, 48.791987630168542, 0.0 ], [ 9.203181508434158, 48.791978605014492, 0.0 ], [ 9.203196790458986, 48.791920847100393, 0.0 ], [ 9.203263101232052, 48.791928463505414, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042f26", "Latitude": 48.78844, "Longitude": 9.20248, "X_coordina": 3514950.56, "Y_coordina": 5405682.93, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 87.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.4, "Total_wall": 83.9, "Total_wa00": 0.0, "Total_outw": 179.8, "Total_shar": 50.6, "Total_roof": 47.4, "Gross_volu": 184.5, "Is_Gross_v": "false", "Heated_vol": 184.5, "Ridge_mean": 3.9, "Eaves_mean": 3.87, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.969, "Heated_are": 87.9, "Mean_Uvalu": 0.42, "Specific_d": "73,0", "Specific_s": 49.1, "Total_Year": 10733.0, "January_He": 1075.0, "February_H": 736.0, "March_Heat": 445.0, "April_Heat": 109.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 19.0, "October_He": 214.0, "November_H": 649.0, "December_H": 1061.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20242238964409, 48.78850367439842, 0.0 ], [ 9.202374912768368, 48.788440541515413, 0.0 ], [ 9.202448984983173, 48.78841658155082, 0.0 ], [ 9.202496459034407, 48.788478995019339, 0.0 ], [ 9.20242238964409, 48.78850367439842, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042d20", "Latitude": 48.7876, "Longitude": 9.20124, "X_coordina": 3514859.72, "Y_coordina": 5405589.89, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 837.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 182.4, "Total_wall": 506.5, "Total_wa00": 0.0, "Total_outw": 791.0, "Total_shar": 240.8, "Total_roof": 298.5, "Gross_volu": 2798.6, "Is_Gross_v": "false", "Heated_vol": 2616.2, "Ridge_mean": 17.6, "Eaves_mean": 11.41, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 13, "Number_o00": 27, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.369, "Heated_are": 837.2, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 35.5, "Total_Year": 42949.0, "January_He": 7282.0, "February_H": 5186.0, "March_Heat": 3236.0, "April_Heat": 642.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1535.0, "November_H": 4615.0, "December_H": 7109.0, "PV_potenti": 11.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201324223296691, 48.787637836207217, 0.0 ], [ 9.201119542544248, 48.7877044676016, 0.0 ], [ 9.201067279536813, 48.787634957949933, 0.0 ], [ 9.20106536427304, 48.787632443431406, 0.0 ], [ 9.201103280894607, 48.787619518138058, 0.0 ], [ 9.201109649627403, 48.787612672817311, 0.0 ], [ 9.201143932029646, 48.787575744238488, 0.0 ], [ 9.20117062628692, 48.787547011959091, 0.0 ], [ 9.201248458214307, 48.787578619020181, 0.0 ], [ 9.201258350411347, 48.787568080663185, 0.0 ], [ 9.201294336423485, 48.787582855170122, 0.0 ], [ 9.201284716762602, 48.787593482977449, 0.0 ], [ 9.201326972827482, 48.787610764377035, 0.0 ], [ 9.201324223296691, 48.787637836207217, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042caf", "Latitude": 48.78806, "Longitude": 9.21065, "X_coordina": 3515551.24, "Y_coordina": 5405642.08, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 154.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.5, "Total_wall": 108.4, "Total_wa00": 0.0, "Total_outw": 177.9, "Total_shar": 239.1, "Total_roof": 88.6, "Gross_volu": 611.3, "Is_Gross_v": "false", "Heated_vol": 554.8, "Ridge_mean": 13.5, "Eaves_mean": 8.09, "Storey_num": 4, "Average_St": 3.1, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.438, "Heated_are": 154.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 50.1, "Total_Year": 10204.0, "January_He": 1861.0, "February_H": 1335.0, "March_Heat": 850.0, "April_Heat": 192.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 28.0, "October_He": 444.0, "November_H": 1217.0, "December_H": 1817.0, "PV_potenti": 3.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210677885587035, 48.788059032213745, 0.0 ], [ 9.210658792695941, 48.788114370191927, 0.0 ], [ 9.2106002386752, 48.788105754692545, 0.0 ], [ 9.2105395057743, 48.788096783452239, 0.0 ], [ 9.210557920235637, 48.788041896352389, 0.0 ], [ 9.210619196669288, 48.788050686741663, 0.0 ], [ 9.210677885587035, 48.788059032213745, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042c76", "Latitude": 48.78849, "Longitude": 9.19614, "X_coordina": 3514484.4, "Y_coordina": 5405687.84, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 766.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 182.8, "Total_wall": 385.4, "Total_wa00": 0.0, "Total_outw": 622.6, "Total_shar": 529.1, "Total_roof": 212.1, "Gross_volu": 2576.7, "Is_Gross_v": "false", "Heated_vol": 2393.9, "Ridge_mean": 15.8, "Eaves_mean": 11.69, "Storey_num": 5, "Average_St": 3.0, "Number_of_": 10, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.316, "Heated_are": 766.0, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 27.5, "Total_Year": 33190.0, "January_He": 5312.0, "February_H": 3719.0, "March_Heat": 2240.0, "April_Heat": 358.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 25.0, "October_He": 960.0, "November_H": 3271.0, "December_H": 5166.0, "PV_potenti": 10.24 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196201561929186, 48.788561201694996, 0.0 ], [ 9.196125576720917, 48.788583991893923, 0.0 ], [ 9.196058563139264, 48.788604158982345, 0.0 ], [ 9.196021472592584, 48.78855017801213, 0.0 ], [ 9.196017777536428, 48.788544878806611, 0.0 ], [ 9.196020903019591, 48.788543704478876, 0.0 ], [ 9.196008859631764, 48.788526369714496, 0.0 ], [ 9.196005461972398, 48.788527544505186, 0.0 ], [ 9.19596891449199, 48.788473202898373, 0.0 ], [ 9.196033345760782, 48.78845393949414, 0.0 ], [ 9.196125370653354, 48.788426356085139, 0.0 ], [ 9.196110419520847, 48.788431147501704, 0.0 ], [ 9.196198283532867, 48.788558059952962, 0.0 ], [ 9.196212691742755, 48.788553629144801, 0.0 ], [ 9.196215019973904, 48.788557401970991, 0.0 ], [ 9.196201561929186, 48.788561201694996, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042c77", "Latitude": 48.78857, "Longitude": 9.19605, "X_coordina": 3514477.94, "Y_coordina": 5405695.88, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 34.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 37.9, "Total_wall": 42.6, "Total_wa00": 0.0, "Total_outw": 145.8, "Total_shar": 53.1, "Total_roof": 37.9, "Gross_volu": 89.6, "Is_Gross_v": "false", "Heated_vol": 89.6, "Ridge_mean": 2.4, "Eaves_mean": 2.35, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.32, "Heated_are": 34.5, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196058563139264, 48.788604158982345, 0.0 ], [ 9.195987878609351, 48.788625231516079, 0.0 ], [ 9.195949970540662, 48.788570982143483, 0.0 ], [ 9.196021472592584, 48.78855017801213, 0.0 ], [ 9.196058563139264, 48.788604158982345, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042c5a", "Latitude": 48.79041, "Longitude": 9.19983, "X_coordina": 3514755.21, "Y_coordina": 5405902.06, "LOD": "LOD2", "Year_of_co": 1930, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 819.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 145.8, "Total_wall": 749.3, "Total_wa00": 0.0, "Total_outw": 978.6, "Total_shar": 0.0, "Total_roof": 244.1, "Gross_volu": 2645.2, "Is_Gross_v": "false", "Heated_vol": 2560.5, "Ridge_mean": 20.9, "Eaves_mean": 15.74, "Storey_num": 7, "Average_St": 2.9, "Number_of_": 13, "Number_o00": 24, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.442, "Heated_are": 819.4, "Mean_Uvalu": 0.62, "Specific_d": "15,8", "Specific_s": 49.5, "Total_Year": 53521.0, "January_He": 9826.0, "February_H": 6934.0, "March_Heat": 4425.0, "April_Heat": 1063.0, "May_Heatin": 53.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 149.0, "October_He": 2220.0, "November_H": 6231.0, "December_H": 9641.0, "PV_potenti": 9.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199817587708734, 48.790512801335936, 0.0 ], [ 9.199664943703159, 48.790423592097383, 0.0 ], [ 9.199753007515612, 48.790357705206084, 0.0 ], [ 9.199904973151812, 48.790447455048366, 0.0 ], [ 9.199817587708734, 48.790512801335936, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042bf4", "Latitude": 48.79034, "Longitude": 9.21363, "X_coordina": 3515769.53, "Y_coordina": 5405896.23, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 587.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 156.4, "Total_wall": 277.6, "Total_wa00": 0.0, "Total_outw": 463.7, "Total_shar": 373.8, "Total_roof": 213.4, "Gross_volu": 1991.0, "Is_Gross_v": "false", "Heated_vol": 1834.6, "Ridge_mean": 15.2, "Eaves_mean": 10.14, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.34, "Heated_are": 587.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 34.9, "Total_Year": 29771.0, "January_He": 5132.0, "February_H": 3563.0, "March_Heat": 2130.0, "April_Heat": 360.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 1016.0, "November_H": 3232.0, "December_H": 4995.0, "PV_potenti": 9.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213612878750011, 48.79042698018533, 0.0 ], [ 9.213539958971863, 48.79043332015015, 0.0 ], [ 9.213530498579015, 48.790384778934715, 0.0 ], [ 9.213522255907716, 48.790366629645561, 0.0 ], [ 9.213495099233976, 48.790317132076083, 0.0 ], [ 9.213563480456331, 48.790299650026547, 0.0 ], [ 9.213629550720629, 48.790282801688669, 0.0 ], [ 9.213669168349732, 48.79035026083276, 0.0 ], [ 9.213682941692387, 48.790420915246088, 0.0 ], [ 9.213612878750011, 48.79042698018533, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042afa", "Latitude": 48.79541, "Longitude": 9.20926, "X_coordina": 3515446.99, "Y_coordina": 5406459.54, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1131, "PrimaryUsa": "residential", "PrimaryU00": 129.5, "SecondaryU": "industry", "Secondar00": 58.1, "BuildingTy": "RH", "Footprint_": 72.7, "Total_wall": 94.6, "Total_wa00": 0.0, "Total_outw": 186.9, "Total_shar": 249.0, "Total_roof": 105.5, "Gross_volu": 610.7, "Is_Gross_v": "false", "Heated_vol": 586.3, "Ridge_mean": 10.5, "Eaves_mean": 6.24, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.455, "Heated_are": 187.6, "Mean_Uvalu": 0.49, "Specific_d": "21,1", "Specific_s": 31.5, "Total_Year": 9872.0, "January_He": 1623.0, "February_H": 1053.0, "March_Heat": 500.0, "April_Heat": 51.0, "May_Heatin": 1.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 3.0, "October_He": 176.0, "November_H": 921.0, "December_H": 1583.0, "PV_potenti": 5.19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209210505914223, 48.795471502064025, 0.0 ], [ 9.209153032811061, 48.795462973799268, 0.0 ], [ 9.209162853496654, 48.795435259511081, 0.0 ], [ 9.20918087874959, 48.795383970350379, 0.0 ], [ 9.209238354758796, 48.795393217984433, 0.0 ], [ 9.20928806745547, 48.795401220769044, 0.0 ], [ 9.209261169564096, 48.795479053514839, 0.0 ], [ 9.209210505914223, 48.795471502064025, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042aab", "Latitude": 48.79205, "Longitude": 9.20758, "X_coordina": 3515324.16, "Y_coordina": 5406085.62, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 6323.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 998.3, "Total_wall": 2133.6, "Total_wa00": 0.0, "Total_outw": 2760.5, "Total_shar": 641.4, "Total_roof": 1021.0, "Gross_volu": 20260.4, "Is_Gross_v": "false", "Heated_vol": 19761.2, "Ridge_mean": 21.5, "Eaves_mean": 19.14, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.208, "Heated_are": 6323.6, "Mean_Uvalu": 0.45, "Specific_d": "32,9", "Specific_s": 1.9, "Total_Year": 219787.0, "January_He": 4942.0, "February_H": 1895.0, "March_Heat": 263.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 7.0, "November_H": 644.0, "December_H": 4240.0, "PV_potenti": 41.05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207454367749225, 48.79192215839565, 0.0 ], [ 9.20747383637601, 48.791923741947144, 0.0 ], [ 9.207473436239798, 48.791925720987244, 0.0 ], [ 9.207669080460738, 48.791942813524983, 0.0 ], [ 9.207669891851081, 48.791941553131409, 0.0 ], [ 9.207688543906245, 48.791943138119173, 0.0 ], [ 9.207686946734571, 48.791951863588707, 0.0 ], [ 9.207684087570462, 48.791951598974272, 0.0 ], [ 9.207681564434907, 48.791966800612748, 0.0 ], [ 9.20778408201468, 48.791975338274483, 0.0 ], [ 9.207784214399323, 48.791974438799613, 0.0 ], [ 9.20779932607288, 48.791975580539336, 0.0 ], [ 9.207797459694557, 48.791985025884927, 0.0 ], [ 9.207794736625733, 48.791984761027656, 0.0 ], [ 9.207793403126258, 48.791991417780075, 0.0 ], [ 9.20779006937603, 48.792008059661057, 0.0 ], [ 9.207752065582701, 48.792198046863007, 0.0 ], [ 9.20775465479206, 48.792198851504331, 0.0 ], [ 9.207753194464731, 48.792207756574733, 0.0 ], [ 9.207739578690587, 48.792206342359748, 0.0 ], [ 9.20773929944054, 48.792204634315183, 0.0 ], [ 9.207640591783074, 48.792195999820891, 0.0 ], [ 9.207635391551641, 48.79222208703959, 0.0 ], [ 9.207619598573809, 48.79222076665954, 0.0 ], [ 9.207618639948913, 48.792219329610305, 0.0 ], [ 9.207412379741655, 48.792202435955552, 0.0 ], [ 9.207411839425417, 48.792203426088236, 0.0 ], [ 9.207397951835857, 48.792202102246058, 0.0 ], [ 9.207399684051847, 48.792193106766909, 0.0 ], [ 9.207401996981828, 48.792192922754175, 0.0 ], [ 9.207405464746834, 48.792175741102049, 0.0 ], [ 9.207304577778256, 48.79216666062689, 0.0 ], [ 9.20730376822741, 48.792168370632503, 0.0 ], [ 9.20728851966793, 48.792167049227047, 0.0 ], [ 9.207288785567187, 48.792165520047313, 0.0 ], [ 9.207290122842194, 48.79215976253009, 0.0 ], [ 9.207293254212521, 48.792160026664305, 0.0 ], [ 9.207305556680543, 48.792106949597056, 0.0 ], [ 9.207270019896646, 48.792103326695724, 0.0 ], [ 9.207273081628932, 48.792086685319674, 0.0 ], [ 9.207287463875554, 48.79200986468053, 0.0 ], [ 9.207290525596493, 48.791993223303777, 0.0 ], [ 9.207327557897726, 48.791996483812014, 0.0 ], [ 9.20733782697689, 48.791945388719739, 0.0 ], [ 9.207334422683394, 48.791944945230881, 0.0 ], [ 9.207336694105393, 48.791934689851118, 0.0 ], [ 9.207347858926273, 48.791935838755954, 0.0 ], [ 9.207347458414494, 48.791937727872657, 0.0 ], [ 9.207451881617059, 48.791946352322412, 0.0 ], [ 9.207454819045246, 48.791932588720165, 0.0 ], [ 9.207452232078641, 48.791932323609622, 0.0 ], [ 9.207454367749225, 48.79192215839565, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042aac", "Latitude": 48.79203, "Longitude": 9.2073, "X_coordina": 3515303.5, "Y_coordina": 5406082.96, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 55.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 30.9, "Total_wall": 67.1, "Total_wa00": 0.0, "Total_outw": 138.7, "Total_shar": 87.9, "Total_roof": 30.9, "Gross_volu": 146.9, "Is_Gross_v": "false", "Heated_vol": 146.9, "Ridge_mean": 4.8, "Eaves_mean": 4.81, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.877, "Heated_are": 55.2, "Mean_Uvalu": 0.43, "Specific_d": "32,9", "Specific_s": 14.3, "Total_Year": 2607.0, "January_He": 259.0, "February_H": 137.0, "March_Heat": 41.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 5.0, "November_H": 92.0, "December_H": 255.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207241068226073, 48.79207936920028, 0.0 ], [ 9.207232743287888, 48.792073808918467, 0.0 ], [ 9.207226319649719, 48.792067256055184, 0.0 ], [ 9.207221798422113, 48.792059980379534, 0.0 ], [ 9.207219589379429, 48.792052340848748, 0.0 ], [ 9.207219693261264, 48.792044517308874, 0.0 ], [ 9.207219825285874, 48.792043527911744, 0.0 ], [ 9.207222516138373, 48.792035969487571, 0.0 ], [ 9.207227522505326, 48.792028856514648, 0.0 ], [ 9.207234301475804, 48.792022549664026, 0.0 ], [ 9.207242989887979, 48.792017228536345, 0.0 ], [ 9.20725304446154, 48.792013163879702, 0.0 ], [ 9.207264056903451, 48.792010356428591, 0.0 ], [ 9.207275620402553, 48.792009166609326, 0.0 ], [ 9.207287462023453, 48.792009415065877, 0.0 ], [ 9.207272816100005, 48.792088304422343, 0.0 ], [ 9.207261785863519, 48.792086795573638, 0.0 ], [ 9.207250885429657, 48.792083757789129, 0.0 ], [ 9.207241068226073, 48.79207936920028, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042aad", "Latitude": 48.79218, "Longitude": 9.20737, "X_coordina": 3515308.58, "Y_coordina": 5406099.73, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 101.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 63.6, "Total_wall": 127.6, "Total_wa00": 0.0, "Total_outw": 264.9, "Total_shar": 125.5, "Total_roof": 63.6, "Gross_volu": 348.2, "Is_Gross_v": "false", "Heated_vol": 318.4, "Ridge_mean": 5.5, "Eaves_mean": 5.47, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.766, "Heated_are": 101.9, "Mean_Uvalu": 0.43, "Specific_d": "32,9", "Specific_s": 19.7, "Total_Year": 5353.0, "January_He": 638.0, "February_H": 352.0, "March_Heat": 120.0, "April_Heat": 8.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 18.0, "November_H": 255.0, "December_H": 614.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207405464746834, 48.792175741102049, 0.0 ], [ 9.207401996981828, 48.792192922754175, 0.0 ], [ 9.207399684051847, 48.792193106766909, 0.0 ], [ 9.207397951835857, 48.792202102246058, 0.0 ], [ 9.2073912907153, 48.792237004596956, 0.0 ], [ 9.207375361270081, 48.792235594505598, 0.0 ], [ 9.207349628663669, 48.792233212903874, 0.0 ], [ 9.207288905803189, 48.792227746958602, 0.0 ], [ 9.207295969731868, 48.792191495034565, 0.0 ], [ 9.207241099894601, 48.792186198375269, 0.0 ], [ 9.207246307733666, 48.792161909632448, 0.0 ], [ 9.207288785567187, 48.792165520047313, 0.0 ], [ 9.20728851966793, 48.792167049227047, 0.0 ], [ 9.20730376822741, 48.792168370632503, 0.0 ], [ 9.207304577778256, 48.79216666062689, 0.0 ], [ 9.207405464746834, 48.792175741102049, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042aae", "Latitude": 48.79212, "Longitude": 9.20777, "X_coordina": 3515338.49, "Y_coordina": 5406092.9, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 278.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 139.5, "Total_wall": 356.0, "Total_wa00": 0.0, "Total_outw": 586.6, "Total_shar": 417.7, "Total_roof": 139.5, "Gross_volu": 869.6, "Is_Gross_v": "false", "Heated_vol": 869.6, "Ridge_mean": 15.9, "Eaves_mean": 15.91, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.73, "Heated_are": 278.3, "Mean_Uvalu": 0.38, "Specific_d": "32,9", "Specific_s": 15.1, "Total_Year": 13354.0, "January_He": 1404.0, "February_H": 719.0, "March_Heat": 216.0, "April_Heat": 11.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 29.0, "November_H": 499.0, "December_H": 1331.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20780093323634, 48.792167024977346, 0.0 ], [ 9.20779493209692, 48.792196890439591, 0.0 ], [ 9.207790396099167, 48.792219019828572, 0.0 ], [ 9.207796932905808, 48.792219997193193, 0.0 ], [ 9.207794127939771, 48.792232861328515, 0.0 ], [ 9.207779423741737, 48.792231539005769, 0.0 ], [ 9.207776367737607, 48.79224952923844, 0.0 ], [ 9.207778683267881, 48.792249974678633, 0.0 ], [ 9.207777614159045, 48.792254742558058, 0.0 ], [ 9.207770264099024, 48.792254575971981, 0.0 ], [ 9.207769441567649, 48.792253138678461, 0.0 ], [ 9.207738673662099, 48.792250856171663, 0.0 ], [ 9.207735062853972, 48.792266329543338, 0.0 ], [ 9.207628458396131, 48.792256989894575, 0.0 ], [ 9.207635391551641, 48.79222208703959, 0.0 ], [ 9.207640591783074, 48.792195999820891, 0.0 ], [ 9.20773929944054, 48.792204634315183, 0.0 ], [ 9.207739578690587, 48.792206342359748, 0.0 ], [ 9.207753194464731, 48.792207756574733, 0.0 ], [ 9.20775465479206, 48.792198851504331, 0.0 ], [ 9.207752065582701, 48.792198046863007, 0.0 ], [ 9.207753133579006, 48.792193009214991, 0.0 ], [ 9.207758999758331, 48.792163413769167, 0.0 ], [ 9.20779006937603, 48.792008059661057, 0.0 ], [ 9.207831730902603, 48.792011761272398, 0.0 ], [ 9.207825340817791, 48.79204630346603, 0.0 ], [ 9.20782806426149, 48.792046658245489, 0.0 ], [ 9.207826745620158, 48.792056911915317, 0.0 ], [ 9.207823070233125, 48.792056738700936, 0.0 ], [ 9.207807190596949, 48.792133292337645, 0.0 ], [ 9.207811820533315, 48.792133913447998, 0.0 ], [ 9.207810771483297, 48.792143537165813, 0.0 ], [ 9.207805466254078, 48.792144176204346, 0.0 ], [ 9.20780093323634, 48.792167024977346, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042946", "Latitude": 48.78827, "Longitude": 9.21034, "X_coordina": 3515528.05, "Y_coordina": 5405665.32, "LOD": "LOD2", "Year_of_co": 1973, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 160.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 59.4, "Total_wall": 179.0, "Total_wa00": 0.0, "Total_outw": 301.8, "Total_shar": 109.0, "Total_roof": 82.6, "Gross_volu": 559.8, "Is_Gross_v": "false", "Heated_vol": 500.4, "Ridge_mean": 11.5, "Eaves_mean": 6.52, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.612, "Heated_are": 160.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 51.6, "Total_Year": 10798.0, "January_He": 2082.0, "February_H": 1391.0, "March_Heat": 837.0, "April_Heat": 176.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 25.0, "October_He": 404.0, "November_H": 1275.0, "December_H": 2063.0, "PV_potenti": 3.41 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210244580126645, 48.788286881336049, 0.0 ], [ 9.210245244138299, 48.788250371119105, 0.0 ], [ 9.210257628863912, 48.788250528355327, 0.0 ], [ 9.210333705982512, 48.788251378590594, 0.0 ], [ 9.210343913306509, 48.788251539794409, 0.0 ], [ 9.210343658381218, 48.788288229112034, 0.0 ], [ 9.210343403831464, 48.788325008352409, 0.0 ], [ 9.210331699526451, 48.788324849882663, 0.0 ], [ 9.210255756882043, 48.788323639705943, 0.0 ], [ 9.210243916489764, 48.788323481475743, 0.0 ], [ 9.210244580126645, 48.788286881336049, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042772", "Latitude": 48.7917, "Longitude": 9.20023, "X_coordina": 3514784.41, "Y_coordina": 5406044.92, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 910.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 379.1, "Total_wall": 521.9, "Total_wa00": 0.0, "Total_outw": 915.7, "Total_shar": 211.7, "Total_roof": 379.1, "Gross_volu": 3138.0, "Is_Gross_v": "false", "Heated_vol": 2843.7, "Ridge_mean": 8.3, "Eaves_mean": 8.28, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.425, "Heated_are": 910.0, "Mean_Uvalu": 0.43, "Specific_d": "73,0", "Specific_s": 50.0, "Total_Year": 111904.0, "January_He": 10649.0, "February_H": 7794.0, "March_Heat": 5251.0, "April_Heat": 1601.0, "May_Heatin": 149.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 298.0, "October_He": 2598.0, "November_H": 6774.0, "December_H": 10345.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200254236978372, 48.791792555049945, 0.0 ], [ 9.200210542811247, 48.791825093443919, 0.0 ], [ 9.200167120067194, 48.791857451502146, 0.0 ], [ 9.20000137028681, 48.791759273149438, 0.0 ], [ 9.2002410097811, 48.791580897892459, 0.0 ], [ 9.200309764679009, 48.791621513709437, 0.0 ], [ 9.20034809810865, 48.791644107771837, 0.0 ], [ 9.200373608381872, 48.791659170551874, 0.0 ], [ 9.200313904001087, 48.791704056375934, 0.0 ], [ 9.200277266957805, 48.79173154679809, 0.0 ], [ 9.200222041091356, 48.791773277459001, 0.0 ], [ 9.200254236978372, 48.791792555049945, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042767", "Latitude": 48.79492, "Longitude": 9.20373, "X_coordina": 3515040.7, "Y_coordina": 5406404.36, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 998.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 233.4, "Total_wall": 870.2, "Total_wa00": 0.0, "Total_outw": 1191.2, "Total_shar": 181.1, "Total_roof": 233.4, "Gross_volu": 3118.8, "Is_Gross_v": "false", "Heated_vol": 3118.8, "Ridge_mean": 15.2, "Eaves_mean": 15.18, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 12, "Number_o00": 27, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.429, "Heated_are": 998.0, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 34.3, "Total_Year": 50079.0, "January_He": 8486.0, "February_H": 5956.0, "March_Heat": 3717.0, "April_Heat": 786.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 74.0, "October_He": 1687.0, "November_H": 5231.0, "December_H": 8306.0, "PV_potenti": 10.87 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203572742514449, 48.794893056522199, 0.0 ], [ 9.203615310821178, 48.794918519552731, 0.0 ], [ 9.20369347217347, 48.794860200788861, 0.0 ], [ 9.20375322878466, 48.794895255184677, 0.0 ], [ 9.203820624885124, 48.79493461235888, 0.0 ], [ 9.203807326588677, 48.794944527485505, 0.0 ], [ 9.203856032207577, 48.794973036965722, 0.0 ], [ 9.20375146120519, 48.795030143638776, 0.0 ], [ 9.203678744159886, 48.794987648511672, 0.0 ], [ 9.203669925668832, 48.794994678145329, 0.0 ], [ 9.203672867978106, 48.795015445281678, 0.0 ], [ 9.203641296124882, 48.795016670122251, 0.0 ], [ 9.203640526791878, 48.794994730136395, 0.0 ], [ 9.203630706058298, 48.794989531936466, 0.0 ], [ 9.203626092286767, 48.794992957189649, 0.0 ], [ 9.203621589874425, 48.794990267444284, 0.0 ], [ 9.203564152861361, 48.794956647657322, 0.0 ], [ 9.203521314155335, 48.794931634703694, 0.0 ], [ 9.203572742514449, 48.794893056522199, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0004242b", "Latitude": 48.78899, "Longitude": 9.20293, "X_coordina": 3514983.34, "Y_coordina": 5405744.18, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 595.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 145.9, "Total_wall": 411.0, "Total_wa00": 0.0, "Total_outw": 603.6, "Total_shar": 196.5, "Total_roof": 198.9, "Gross_volu": 1899.5, "Is_Gross_v": "false", "Heated_vol": 1860.3, "Ridge_mean": 15.3, "Eaves_mean": 10.98, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 7, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.403, "Heated_are": 595.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.6, "Total_Year": 33582.0, "January_He": 5830.0, "February_H": 4187.0, "March_Heat": 2715.0, "April_Heat": 630.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 70.0, "October_He": 1270.0, "November_H": 3699.0, "December_H": 5729.0, "PV_potenti": 7.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202860189374352, 48.789077695961566, 0.0 ], [ 9.202786030415854, 48.788979000490727, 0.0 ], [ 9.202898294370918, 48.788942563516848, 0.0 ], [ 9.202923193203175, 48.788974892156595, 0.0 ], [ 9.202974356020526, 48.788973093440326, 0.0 ], [ 9.202978947724727, 48.78903180548658, 0.0 ], [ 9.202982242453759, 48.78907262501324, 0.0 ], [ 9.202860189374352, 48.789077695961566, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00042370", "Latitude": 48.79029, "Longitude": 9.19962, "X_coordina": 3514739.82, "Y_coordina": 5405888.57, "LOD": "LOD2", "Year_of_co": 1948, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 964.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 175.5, "Total_wall": 715.0, "Total_wa00": 0.0, "Total_outw": 915.8, "Total_shar": 193.3, "Total_roof": 305.3, "Gross_volu": 3190.6, "Is_Gross_v": "false", "Heated_vol": 3015.1, "Ridge_mean": 21.3, "Eaves_mean": 15.36, "Storey_num": 7, "Average_St": 2.9, "Number_of_": 15, "Number_o00": 33, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.39, "Heated_are": 964.8, "Mean_Uvalu": 0.6, "Specific_d": "15,8", "Specific_s": 46.7, "Total_Year": 60347.0, "January_He": 10756.0, "February_H": 7734.0, "March_Heat": 5069.0, "April_Heat": 1242.0, "May_Heatin": 54.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 176.0, "October_He": 2576.0, "November_H": 6963.0, "December_H": 10496.0, "PV_potenti": 11.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199510163460518, 48.79024167510066, 0.0 ], [ 9.199576198214785, 48.790249024336362, 0.0 ], [ 9.19957217889991, 48.790265037707172, 0.0 ], [ 9.199622105285835, 48.790294266272589, 0.0 ], [ 9.199640150748522, 48.790280386751604, 0.0 ], [ 9.199709310950501, 48.790320822385901, 0.0 ], [ 9.199613380474851, 48.790393467152271, 0.0 ], [ 9.199440684082019, 48.790292332530285, 0.0 ], [ 9.199453659518085, 48.790235388403381, 0.0 ], [ 9.199510163460518, 48.79024167510066, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000420a2", "Latitude": 48.79089, "Longitude": 9.21317, "X_coordina": 3515735.45, "Y_coordina": 5405957.75, "LOD": "LOD2", "Year_of_co": 1927, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 530.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 139.3, "Total_wall": 277.3, "Total_wa00": 0.0, "Total_outw": 431.4, "Total_shar": 330.4, "Total_roof": 193.1, "Gross_volu": 1796.2, "Is_Gross_v": "false", "Heated_vol": 1656.9, "Ridge_mean": 15.3, "Eaves_mean": 10.47, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.355, "Heated_are": 530.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 35.5, "Total_Year": 27245.0, "January_He": 4530.0, "February_H": 3243.0, "March_Heat": 2179.0, "April_Heat": 582.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 58.0, "October_He": 961.0, "November_H": 2821.0, "December_H": 4452.0, "PV_potenti": 8.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213223846075538, 48.790955462863558, 0.0 ], [ 9.213036593559158, 48.79095913658486, 0.0 ], [ 9.213033327661643, 48.790959232549959, 0.0 ], [ 9.213031853655485, 48.790932527962802, 0.0 ], [ 9.21303443755434, 48.790932073564903, 0.0 ], [ 9.213033548658744, 48.790914989722197, 0.0 ], [ 9.213031312718691, 48.790869042890336, 0.0 ], [ 9.213218971660561, 48.790865008730556, 0.0 ], [ 9.213221479961197, 48.790910955054564, 0.0 ], [ 9.213223846075538, 48.790955462863558, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00041fe2", "Latitude": 48.79093, "Longitude": 9.20861, "X_coordina": 3515400.22, "Y_coordina": 5405961.31, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 403.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 160.8, "Total_wall": 238.9, "Total_wa00": 0.0, "Total_outw": 502.5, "Total_shar": 133.0, "Total_roof": 238.9, "Gross_volu": 1382.1, "Is_Gross_v": "false", "Heated_vol": 1260.1, "Ridge_mean": 11.4, "Eaves_mean": 6.18, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.486, "Heated_are": 403.2, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 45.6, "Total_Year": 24777.0, "January_He": 4449.0, "February_H": 3123.0, "March_Heat": 2037.0, "April_Heat": 537.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 982.0, "November_H": 2796.0, "December_H": 4372.0, "PV_potenti": 10.91 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208690775164568, 48.7909259988133, 0.0 ], [ 9.208664310493118, 48.791009495883053, 0.0 ], [ 9.20844017318262, 48.790979777378844, 0.0 ], [ 9.208451569543625, 48.790938301964573, 0.0 ], [ 9.208463368955281, 48.790895566888672, 0.0 ], [ 9.208690775164568, 48.7909259988133, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00041b18", "Latitude": 48.78865, "Longitude": 9.19403, "X_coordina": 3514329.47, "Y_coordina": 5405705.0, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 3656.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 493.0, "Total_wall": 1579.3, "Total_wa00": 0.0, "Total_outw": 1910.8, "Total_shar": 726.8, "Total_roof": 493.0, "Gross_volu": 11425.4, "Is_Gross_v": "false", "Heated_vol": 11425.4, "Ridge_mean": 25.3, "Eaves_mean": 25.3, "Storey_num": 10, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.225, "Heated_are": 3656.1, "Mean_Uvalu": 0.37, "Specific_d": "14,6", "Specific_s": 48.1, "Total_Year": 229248.0, "January_He": 38024.0, "February_H": 29260.0, "March_Heat": 22334.0, "April_Heat": 9530.0, "May_Heatin": 1415.0, "June_Heati": 54, "July_Heati": 6, "August_Hea": 11, "September_": 2261.0, "October_He": 11493.0, "November_H": 24993.0, "December_H": 36454.0, "PV_potenti": 21.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194071334435295, 48.788803378943697, 0.0 ], [ 9.194071880179472, 48.788803737718538, 0.0 ], [ 9.194054098951089, 48.788815817452885, 0.0 ], [ 9.19405232632278, 48.78881492120361, 0.0 ], [ 9.193776124668355, 48.78865415321745, 0.0 ], [ 9.193934622491424, 48.788536086414105, 0.0 ], [ 9.193942221270447, 48.788530318502886, 0.0 ], [ 9.19418964693325, 48.788675308062395, 0.0 ], [ 9.194155450361878, 48.78870072419334, 0.0 ], [ 9.194192141230303, 48.788722154076424, 0.0 ], [ 9.194191191382989, 48.788722875067386, 0.0 ], [ 9.194071334435295, 48.788803378943697, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00041a11", "Latitude": 48.79535, "Longitude": 9.20971, "X_coordina": 3515479.74, "Y_coordina": 5406452.95, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 399.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 116.3, "Total_wall": 392.9, "Total_wa00": 0.0, "Total_outw": 634.0, "Total_shar": 31.7, "Total_roof": 167.7, "Gross_volu": 1350.3, "Is_Gross_v": "false", "Heated_vol": 1247.6, "Ridge_mean": 14.4, "Eaves_mean": 8.8, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.527, "Heated_are": 399.2, "Mean_Uvalu": 0.58, "Specific_d": "15,8", "Specific_s": 56.5, "Total_Year": 28876.0, "January_He": 5431.0, "February_H": 3839.0, "March_Heat": 2459.0, "April_Heat": 619.0, "May_Heatin": 34.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 93.0, "October_He": 1256.0, "November_H": 3487.0, "December_H": 5334.0, "PV_potenti": 8.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209629488524547, 48.795416156556328, 0.0 ], [ 9.20957841394044, 48.795407976550372, 0.0 ], [ 9.20959967123637, 48.795348498399257, 0.0 ], [ 9.209611779994724, 48.795314665106609, 0.0 ], [ 9.209612451537573, 48.795312505719174, 0.0 ], [ 9.209662300320197, 48.795320508094782, 0.0 ], [ 9.209683683318689, 48.795323886257812, 0.0 ], [ 9.209703431914601, 48.795326997622418, 0.0 ], [ 9.209753553314338, 48.795335089385652, 0.0 ], [ 9.209719515594921, 48.795430470334857, 0.0 ], [ 9.209669258373326, 48.795422468727764, 0.0 ], [ 9.20964923715335, 48.795419267930114, 0.0 ], [ 9.209629488524547, 48.795416156556328, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00041a12", "Latitude": 48.79529, "Longitude": 9.20976, "X_coordina": 3515483.75, "Y_coordina": 5406446.07, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 20.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 24.9, "Total_wall": 44.3, "Total_wa00": 0.0, "Total_outw": 145.6, "Total_shar": 31.8, "Total_roof": 24.9, "Gross_volu": 78.1, "Is_Gross_v": "false", "Heated_vol": 64.2, "Ridge_mean": 3.1, "Eaves_mean": 3.11, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.329, "Heated_are": 20.5, "Mean_Uvalu": 0.62, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209706257550371, 48.795319169128497, 0.0 ], [ 9.209686508957356, 48.79531605776436, 0.0 ], [ 9.209673570199481, 48.795314013080983, 0.0 ], [ 9.209684605786137, 48.79528395852337, 0.0 ], [ 9.209767141894599, 48.795297116898098, 0.0 ], [ 9.209753553314338, 48.795335089385652, 0.0 ], [ 9.209703431914601, 48.795326997622418, 0.0 ], [ 9.209706257550371, 48.795319169128497, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0004172d", "Latitude": 48.79345, "Longitude": 9.1994, "X_coordina": 3514722.66, "Y_coordina": 5406239.56, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 245.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 153.5, "Total_wall": 220.5, "Total_wa00": 0.0, "Total_outw": 463.0, "Total_shar": 106.1, "Total_roof": 153.5, "Gross_volu": 899.5, "Is_Gross_v": "false", "Heated_vol": 767.1, "Ridge_mean": 5.9, "Eaves_mean": 5.86, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.629, "Heated_are": 245.5, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 14.4, "Total_Year": 11605.0, "January_He": 1162.0, "February_H": 620.0, "March_Heat": 189.0, "April_Heat": 11.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 25.0, "November_H": 410.0, "December_H": 1122.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199308954187993, 48.793558945366208, 0.0 ], [ 9.199226966003517, 48.793510888204125, 0.0 ], [ 9.199398764678298, 48.793382809456936, 0.0 ], [ 9.199481025377381, 48.793430955949411, 0.0 ], [ 9.199411681601378, 48.793482602257505, 0.0 ], [ 9.19931343237676, 48.793555610443278, 0.0 ], [ 9.199308954187993, 48.793558945366208, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000416dc", "Latitude": 48.78987, "Longitude": 9.21336, "X_coordina": 3515749.95, "Y_coordina": 5405843.8, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 580.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 148.4, "Total_wall": 281.1, "Total_wa00": 0.0, "Total_outw": 461.3, "Total_shar": 388.4, "Total_roof": 198.4, "Gross_volu": 1962.9, "Is_Gross_v": "false", "Heated_vol": 1814.5, "Ridge_mean": 15.6, "Eaves_mean": 10.88, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.334, "Heated_are": 580.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 33.9, "Total_Year": 28874.0, "January_He": 4947.0, "February_H": 3428.0, "March_Heat": 2042.0, "April_Heat": 340.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 32.0, "October_He": 964.0, "November_H": 3102.0, "December_H": 4816.0, "PV_potenti": 8.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21342200135463, 48.789928437796512, 0.0 ], [ 9.213354572469294, 48.789945738151701, 0.0 ], [ 9.213287415340879, 48.789962948040426, 0.0 ], [ 9.2132190058486, 48.789845184837318, 0.0 ], [ 9.213286299697703, 48.789828154582167, 0.0 ], [ 9.213353457409362, 48.789811124539852, 0.0 ], [ 9.21342200135463, 48.789928437796512, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00041501", "Latitude": 48.79445, "Longitude": 9.20403, "X_coordina": 3515062.92, "Y_coordina": 5406351.65, "LOD": "LOD2", "Year_of_co": 1943, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1065.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 189.1, "Total_wall": 897.2, "Total_wa00": 0.0, "Total_outw": 1186.4, "Total_shar": 197.6, "Total_roof": 286.5, "Gross_volu": 3918.9, "Is_Gross_v": "false", "Heated_vol": 3729.8, "Ridge_mean": 22.5, "Eaves_mean": 17.19, "Storey_num": 7, "Average_St": 3.1, "Number_of_": 17, "Number_o00": 27, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.363, "Heated_are": 1065.7, "Mean_Uvalu": 0.61, "Specific_d": "15,8", "Specific_s": 49.6, "Total_Year": 69751.0, "January_He": 12617.0, "February_H": 9045.0, "March_Heat": 5926.0, "April_Heat": 1489.0, "May_Heatin": 72.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 223.0, "October_He": 3041.0, "November_H": 8133.0, "December_H": 12324.0, "PV_potenti": 8.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20389918468239, 48.794437285950373, 0.0 ], [ 9.20390600338586, 48.794440601048741, 0.0 ], [ 9.203982401231984, 48.794383993754167, 0.0 ], [ 9.204121149768545, 48.79446521864876, 0.0 ], [ 9.203997123603211, 48.794557520143904, 0.0 ], [ 9.203988685474677, 48.794557625014782, 0.0 ], [ 9.203938752690226, 48.794528488296912, 0.0 ], [ 9.203938429454702, 48.794515899571223, 0.0 ], [ 9.203945483932111, 48.794510221893866, 0.0 ], [ 9.203926250178284, 48.794499644975183, 0.0 ], [ 9.203918518457188, 48.794506133162649, 0.0 ], [ 9.203900414360396, 48.794505625677836, 0.0 ], [ 9.203857029632411, 48.794480164196038, 0.0 ], [ 9.203857287997003, 48.794476746643447, 0.0 ], [ 9.20388469912333, 48.794456465315548, 0.0 ], [ 9.20389918468239, 48.794437285950373, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000414ff", "Latitude": 48.79459, "Longitude": 9.20386, "X_coordina": 3515050.28, "Y_coordina": 5406367.5, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 592.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 145.2, "Total_wall": 673.7, "Total_wa00": 0.0, "Total_outw": 920.1, "Total_shar": 122.3, "Total_roof": 145.2, "Gross_volu": 1850.8, "Is_Gross_v": "false", "Heated_vol": 1850.8, "Ridge_mean": 12.7, "Eaves_mean": 12.74, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 7, "Number_o00": 19, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.521, "Heated_are": 592.3, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 41.0, "Total_Year": 33683.0, "January_He": 5977.0, "February_H": 4186.0, "March_Heat": 2617.0, "April_Heat": 561.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 69.0, "October_He": 1277.0, "November_H": 3747.0, "December_H": 5847.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20372394115317, 48.794620230847535, 0.0 ], [ 9.203687240112998, 48.794598354420529, 0.0 ], [ 9.203778560066059, 48.79452940134081, 0.0 ], [ 9.203948140910706, 48.794628466666197, 0.0 ], [ 9.203853964261112, 48.794697784630273, 0.0 ], [ 9.203817399213007, 48.794675908004265, 0.0 ], [ 9.203837482287293, 48.794660945147655, 0.0 ], [ 9.203825273502128, 48.794637406785519, 0.0 ], [ 9.20380691281145, 48.794640766453092, 0.0 ], [ 9.20377771788403, 48.794623912489662, 0.0 ], [ 9.203780255439783, 48.79461194816632, 0.0 ], [ 9.203742531813294, 48.794606439653748, 0.0 ], [ 9.20372394115317, 48.794620230847535, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00041402", "Latitude": 48.78883, "Longitude": 9.21306, "X_coordina": 3515727.68, "Y_coordina": 5405728.23, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 91.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.8, "Total_wall": 51.2, "Total_wa00": 0.0, "Total_outw": 109.6, "Total_shar": 214.3, "Total_roof": 53.5, "Gross_volu": 326.3, "Is_Gross_v": "false", "Heated_vol": 284.5, "Ridge_mean": 9.5, "Eaves_mean": 6.11, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.48, "Heated_are": 91.0, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 43.7, "Total_Year": 5416.0, "January_He": 1011.0, "February_H": 688.0, "March_Heat": 384.0, "April_Heat": 58.0, "May_Heatin": 1.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 192.0, "November_H": 641.0, "December_H": 992.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212957469131172, 48.788824046285079, 0.0 ], [ 9.213016950748944, 48.788826454138302, 0.0 ], [ 9.213072893292527, 48.788828688661603, 0.0 ], [ 9.213068181005912, 48.788872849891533, 0.0 ], [ 9.213012919240473, 48.788870704030394, 0.0 ], [ 9.212953165772571, 48.788868386601422, 0.0 ], [ 9.212957469131172, 48.788824046285079, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00040edc", "Latitude": 48.79159, "Longitude": 9.20121, "X_coordina": 3514856.4, "Y_coordina": 5406032.5, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 763.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 176.6, "Total_wall": 460.0, "Total_wa00": 0.0, "Total_outw": 673.3, "Total_shar": 539.9, "Total_roof": 176.6, "Gross_volu": 2527.7, "Is_Gross_v": "false", "Heated_vol": 2385.4, "Ridge_mean": 14.3, "Eaves_mean": 14.31, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 10, "Number_o00": 18, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.333, "Heated_are": 763.3, "Mean_Uvalu": 0.36, "Specific_d": "15,8", "Specific_s": 29.2, "Total_Year": 34372.0, "January_He": 5443.0, "February_H": 3900.0, "March_Heat": 2540.0, "April_Heat": 570.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 1115.0, "November_H": 3373.0, "December_H": 5280.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201140555860446, 48.791668174722645, 0.0 ], [ 9.201109535820242, 48.791670746760758, 0.0 ], [ 9.201107824670952, 48.791651236327397, 0.0 ], [ 9.201103049779611, 48.791648367110767, 0.0 ], [ 9.201104814007904, 48.791647105099386, 0.0 ], [ 9.20108612453531, 48.791636077133099, 0.0 ], [ 9.201077847420706, 48.791642296314762, 0.0 ], [ 9.201035012771207, 48.791617282415856, 0.0 ], [ 9.201163650055021, 48.791521379062118, 0.0 ], [ 9.201207439879742, 48.791547020709928, 0.0 ], [ 9.201197805783382, 48.791554231430922, 0.0 ], [ 9.201219223296071, 48.791566783313748, 0.0 ], [ 9.201228857391762, 48.791559572590998, 0.0 ], [ 9.20126323431055, 48.791579655402003, 0.0 ], [ 9.201257857337122, 48.791596390589568, 0.0 ], [ 9.201281866836323, 48.791610466631916, 0.0 ], [ 9.201296793237335, 48.791599379938134, 0.0 ], [ 9.20129870290857, 48.791600455683231, 0.0 ], [ 9.201178070958465, 48.791690230396561, 0.0 ], [ 9.201140555860446, 48.791668174722645, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00040bed", "Latitude": 48.78945, "Longitude": 9.20637, "X_coordina": 3515236.46, "Y_coordina": 5405796.35, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 3554.7, "SecondaryU": "retail", "Secondar00": 444.5, "BuildingTy": "HH", "Footprint_": 555.6, "Total_wall": 1552.7, "Total_wa00": 0.0, "Total_outw": 1858.0, "Total_shar": 669.6, "Total_roof": 598.0, "Gross_volu": 13052.9, "Is_Gross_v": "false", "Heated_vol": 12497.3, "Ridge_mean": 27.1, "Eaves_mean": 21.66, "Storey_num": 10, "Average_St": 2.6, "Number_of_": 74, "Number_o00": 117, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.213, "Heated_are": 3999.1, "Mean_Uvalu": 0.46, "Specific_d": "22,2", "Specific_s": 28.6, "Total_Year": 202996.0, "January_He": 27312.0, "February_H": 20089.0, "March_Heat": 13655.0, "April_Heat": 3394.0, "May_Heatin": 84.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 281.0, "October_He": 5851.0, "November_H": 17183.0, "December_H": 26393.0, "PV_potenti": 27.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20611163956573, 48.789435034046598, 0.0 ], [ 9.206109734487745, 48.78940185563382, 0.0 ], [ 9.206203758475805, 48.789398090367492, 0.0 ], [ 9.20639602448448, 48.789390372197602, 0.0 ], [ 9.206550734930348, 48.78938406992765, 0.0 ], [ 9.206533449449191, 48.789483106855144, 0.0 ], [ 9.20651955872566, 48.789547157396065, 0.0 ], [ 9.20640498692898, 48.789551499292322, 0.0 ], [ 9.206118964886299, 48.789562172958064, 0.0 ], [ 9.206116471974868, 48.78951838460916, 0.0 ], [ 9.206114123997878, 48.789476754167765, 0.0 ], [ 9.20611163956573, 48.789435034046598, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00040bef", "Latitude": 48.78932, "Longitude": 9.20634, "X_coordina": 3515233.88, "Y_coordina": 5405781.65, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 740.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 168.2, "Total_wall": 521.6, "Total_wa00": 0.0, "Total_outw": 718.4, "Total_shar": 268.1, "Total_roof": 168.2, "Gross_volu": 2463.9, "Is_Gross_v": "false", "Heated_vol": 2313.3, "Ridge_mean": 14.6, "Eaves_mean": 14.64, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.362, "Heated_are": 740.3, "Mean_Uvalu": 0.4, "Specific_d": "14,6", "Specific_s": 52.7, "Total_Year": 49843.0, "January_He": 8888.0, "February_H": 6538.0, "March_Heat": 4670.0, "April_Heat": 1712.0, "May_Heatin": 210.0, "June_Heati": 8, "July_Heati": 1, "August_Hea": 1, "September_": 357.0, "October_He": 2358.0, "November_H": 5670.0, "December_H": 8615.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206386469403833, 48.789283829809712, 0.0 ], [ 9.20639602448448, 48.789390372197602, 0.0 ], [ 9.206203758475805, 48.789398090367492, 0.0 ], [ 9.206193795160436, 48.789291458771146, 0.0 ], [ 9.206386469403833, 48.789283829809712, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00040b6d", "Latitude": 48.78826, "Longitude": 9.20993, "X_coordina": 3515498.03, "Y_coordina": 5405664.94, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 145.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 53.3, "Total_wall": 96.3, "Total_wa00": 0.0, "Total_outw": 168.6, "Total_shar": 200.1, "Total_roof": 75.7, "Gross_volu": 466.4, "Is_Gross_v": "false", "Heated_vol": 454.3, "Ridge_mean": 10.6, "Eaves_mean": 6.87, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.49, "Heated_are": 145.4, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 45.2, "Total_Year": 8867.0, "January_He": 1610.0, "February_H": 1113.0, "March_Heat": 717.0, "April_Heat": 184.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 21.0, "October_He": 324.0, "November_H": 987.0, "December_H": 1599.0, "PV_potenti": 3.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209836589484627, 48.788287715391306, 0.0 ], [ 9.20983766093017, 48.78825093466336, 0.0 ], [ 9.209934968464598, 48.788251926322552, 0.0 ], [ 9.209933760627266, 48.788288617376381, 0.0 ], [ 9.209932798707293, 48.78831901332574, 0.0 ], [ 9.209835763218924, 48.788318021169005, 0.0 ], [ 9.209836589484627, 48.788287715391306, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000408b1", "Latitude": 48.79148, "Longitude": 9.20055, "X_coordina": 3514807.65, "Y_coordina": 5406021.09, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 925.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 385.5, "Total_wall": 476.5, "Total_wa00": 0.0, "Total_outw": 790.4, "Total_shar": 192.8, "Total_roof": 385.5, "Gross_volu": 2945.2, "Is_Gross_v": "false", "Heated_vol": 2891.2, "Ridge_mean": 7.6, "Eaves_mean": 7.64, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.427, "Heated_are": 925.2, "Mean_Uvalu": 0.42, "Specific_d": "73,0", "Specific_s": 51.4, "Total_Year": 115072.0, "January_He": 10840.0, "February_H": 8139.0, "March_Heat": 5702.0, "April_Heat": 1861.0, "May_Heatin": 177.0, "June_Heati": 5, "July_Heati": 0, "August_Hea": 1, "September_": 378.0, "October_He": 2883.0, "November_H": 7075.0, "December_H": 10464.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200421641995371, 48.791588586858666, 0.0 ], [ 9.200383173194654, 48.791566172903295, 0.0 ], [ 9.200314420461149, 48.791526096667567, 0.0 ], [ 9.200512941377326, 48.79137809661129, 0.0 ], [ 9.200691508347363, 48.791482366703264, 0.0 ], [ 9.200493668747642, 48.791630545725496, 0.0 ], [ 9.200421641995371, 48.791588586858666, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000408b2", "Latitude": 48.79133, "Longitude": 9.20075, "X_coordina": 3514822.5, "Y_coordina": 5406004.57, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 286.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 399.4, "Total_wall": 96.2, "Total_wa00": 0.0, "Total_outw": 374.9, "Total_shar": 282.2, "Total_roof": 400.5, "Gross_volu": 1286.5, "Is_Gross_v": "false", "Heated_vol": 895.0, "Ridge_mean": 3.5, "Eaves_mean": 3.48, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.732, "Heated_are": 286.4, "Mean_Uvalu": 0.3, "Specific_d": "32,9", "Specific_s": 20.2, "Total_Year": 15188.0, "January_He": 1712.0, "February_H": 1104.0, "March_Heat": 495.0, "April_Heat": 51.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 1.0, "October_He": 74.0, "November_H": 730.0, "December_H": 1611.0, "PV_potenti": 18.46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200895820876374, 48.791319518497424, 0.0 ], [ 9.200760944334728, 48.791420737925776, 0.0 ], [ 9.200768856933808, 48.791425490082084, 0.0 ], [ 9.200730860812671, 48.79145334271368, 0.0 ], [ 9.200691508347363, 48.791482366703264, 0.0 ], [ 9.200512941377326, 48.79137809661129, 0.0 ], [ 9.200712682402173, 48.791229194846451, 0.0 ], [ 9.200739491114545, 48.791228608575516, 0.0 ], [ 9.200895820876374, 48.791319518497424, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000408b3", "Latitude": 48.79158, "Longitude": 9.20041, "X_coordina": 3514797.54, "Y_coordina": 5406032.27, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 80.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 33.7, "Total_wall": 134.0, "Total_wa00": 0.0, "Total_outw": 223.7, "Total_shar": 94.0, "Total_roof": 33.7, "Gross_volu": 253.9, "Is_Gross_v": "false", "Heated_vol": 252.9, "Ridge_mean": 7.5, "Eaves_mean": 7.53, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.795, "Heated_are": 80.9, "Mean_Uvalu": 0.54, "Specific_d": "73,0", "Specific_s": 70.5, "Total_Year": 11613.0, "January_He": 1438.0, "February_H": 967.0, "March_Heat": 556.0, "April_Heat": 129.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 25.0, "October_He": 282.0, "November_H": 877.0, "December_H": 1422.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20034809810865, 48.791644107771837, 0.0 ], [ 9.200309764679009, 48.791621513709437, 0.0 ], [ 9.200331475373632, 48.791605199770615, 0.0 ], [ 9.200328805049143, 48.791583982445651, 0.0 ], [ 9.200360919936958, 48.791582937413999, 0.0 ], [ 9.200383173194654, 48.791566172903295, 0.0 ], [ 9.200421641995371, 48.791588586858666, 0.0 ], [ 9.20034809810865, 48.791644107771837, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000408b4", "Latitude": 48.79172, "Longitude": 9.20037, "X_coordina": 3514794.87, "Y_coordina": 5406047.02, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 50.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 27.4, "Total_wall": 67.7, "Total_wa00": 0.0, "Total_outw": 160.5, "Total_shar": 37.3, "Total_roof": 27.4, "Gross_volu": 105.4, "Is_Gross_v": "false", "Heated_vol": 105.4, "Ridge_mean": 3.9, "Eaves_mean": 3.87, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.162, "Heated_are": 50.3, "Mean_Uvalu": 0.49, "Specific_d": "73,0", "Specific_s": 60.3, "Total_Year": 6706.0, "January_He": 771.0, "February_H": 506.0, "March_Heat": 295.0, "April_Heat": 69.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 14.0, "October_He": 150.0, "November_H": 461.0, "December_H": 760.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200345747390317, 48.791771533604695, 0.0 ], [ 9.200277266957805, 48.79173154679809, 0.0 ], [ 9.200313904001087, 48.791704056375934, 0.0 ], [ 9.200382520522325, 48.791744042924158, 0.0 ], [ 9.200345747390317, 48.791771533604695, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0004082a", "Latitude": 48.78772, "Longitude": 9.21362, "X_coordina": 3515769.64, "Y_coordina": 5405605.2, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 463.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 122.7, "Total_wall": 228.9, "Total_wa00": 0.0, "Total_outw": 395.1, "Total_shar": 333.8, "Total_roof": 209.3, "Gross_volu": 1568.8, "Is_Gross_v": "false", "Heated_vol": 1447.9, "Ridge_mean": 16.0, "Eaves_mean": 9.54, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.374, "Heated_are": 463.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.4, "Total_Year": 26034.0, "January_He": 4558.0, "February_H": 3254.0, "March_Heat": 2027.0, "April_Heat": 396.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 1010.0, "November_H": 2949.0, "December_H": 4445.0, "PV_potenti": 10.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213498260777861, 48.78779018185913, 0.0 ], [ 9.21353709719007, 48.787674018401127, 0.0 ], [ 9.213602187916896, 48.787683699368891, 0.0 ], [ 9.213660061142997, 48.78769222468307, 0.0 ], [ 9.213660605869103, 48.787692313596104, 0.0 ], [ 9.213621767819532, 48.787808027480118, 0.0 ], [ 9.213564031316254, 48.787799681740623, 0.0 ], [ 9.213498260777861, 48.78779018185913, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000406fa", "Latitude": 48.78805, "Longitude": 9.20888, "X_coordina": 3515421.08, "Y_coordina": 5405640.7, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 197.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.1, "Total_wall": 125.2, "Total_wa00": 0.0, "Total_outw": 211.5, "Total_shar": 267.3, "Total_roof": 85.5, "Gross_volu": 640.0, "Is_Gross_v": "false", "Heated_vol": 617.0, "Ridge_mean": 13.7, "Eaves_mean": 9.14, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.426, "Heated_are": 197.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.3, "Total_Year": 11081.0, "January_He": 1943.0, "February_H": 1358.0, "March_Heat": 874.0, "April_Heat": 220.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 25.0, "October_He": 408.0, "November_H": 1203.0, "December_H": 1913.0, "PV_potenti": 3.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208858208584445, 48.788114412607761, 0.0 ], [ 9.208770318149178, 48.788087055335652, 0.0 ], [ 9.208790884026778, 48.788058242479423, 0.0 ], [ 9.208815915755881, 48.788023396636447, 0.0 ], [ 9.208904213992659, 48.788050663210647, 0.0 ], [ 9.208878775169257, 48.788085779582033, 0.0 ], [ 9.208858208584445, 48.788114412607761, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000406bb", "Latitude": 48.78755, "Longitude": 9.19973, "X_coordina": 3514748.67, "Y_coordina": 5405583.21, "LOD": "LOD2", "Year_of_co": 1932, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 278.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 102.3, "Total_wall": 247.4, "Total_wa00": 0.0, "Total_outw": 475.4, "Total_shar": 33.1, "Total_roof": 166.3, "Gross_volu": 972.4, "Is_Gross_v": "false", "Heated_vol": 870.0, "Ridge_mean": 12.5, "Eaves_mean": 7.44, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 3, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.57, "Heated_are": 278.4, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 51.0, "Total_Year": 18600.0, "January_He": 3482.0, "February_H": 2442.0, "March_Heat": 1496.0, "April_Heat": 314.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 44.0, "October_He": 760.0, "November_H": 2219.0, "December_H": 3420.0, "PV_potenti": 6.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199700442109833, 48.787502900504904, 0.0 ], [ 9.199773087690543, 48.787599532366954, 0.0 ], [ 9.199669388244859, 48.787633523516341, 0.0 ], [ 9.199596199897021, 48.787537252224929, 0.0 ], [ 9.19960177228174, 48.787535444093031, 0.0 ], [ 9.199644583300511, 48.787521251864462, 0.0 ], [ 9.199700442109833, 48.787502900504904, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000404cc", "Latitude": 48.79122, "Longitude": 9.21325, "X_coordina": 3515741.02, "Y_coordina": 5405994.74, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 460.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 129.3, "Total_wall": 228.8, "Total_wa00": 0.0, "Total_outw": 380.1, "Total_shar": 321.7, "Total_roof": 192.2, "Gross_volu": 1568.8, "Is_Gross_v": "false", "Heated_vol": 1439.5, "Ridge_mean": 14.8, "Eaves_mean": 9.46, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.368, "Heated_are": 460.6, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 37.7, "Total_Year": 24670.0, "January_He": 4263.0, "February_H": 3047.0, "March_Heat": 1872.0, "April_Heat": 339.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 904.0, "November_H": 2748.0, "December_H": 4157.0, "PV_potenti": 8.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213179445266089, 48.791172440820013, 0.0 ], [ 9.213240758351681, 48.791188873250256, 0.0 ], [ 9.213300436805566, 48.791204948981026, 0.0 ], [ 9.213230140328481, 48.791316764285348, 0.0 ], [ 9.213170870813665, 48.791300867608733, 0.0 ], [ 9.213109012469472, 48.791284256303399, 0.0 ], [ 9.213179445266089, 48.791172440820013, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000403bc", "Latitude": 48.78793, "Longitude": 9.21103, "X_coordina": 3515579.25, "Y_coordina": 5405627.93, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 157.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 58.1, "Total_wall": 186.6, "Total_wa00": 0.0, "Total_outw": 286.8, "Total_shar": 129.8, "Total_roof": 93.4, "Gross_volu": 625.9, "Is_Gross_v": "false", "Heated_vol": 567.8, "Ridge_mean": 13.6, "Eaves_mean": 7.91, "Storey_num": 4, "Average_St": 3.2, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.573, "Heated_are": 157.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 51.9, "Total_Year": 10647.0, "January_He": 2103.0, "February_H": 1369.0, "March_Heat": 775.0, "April_Heat": 164.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 21.0, "October_He": 373.0, "November_H": 1249.0, "December_H": 2094.0, "PV_potenti": 3.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210983478425575, 48.787979519775305, 0.0 ], [ 9.210920708451738, 48.787971541628039, 0.0 ], [ 9.210937612307282, 48.787913509904797, 0.0 ], [ 9.211000116069867, 48.787922927309282, 0.0 ], [ 9.211057989888994, 48.787931633776054, 0.0 ], [ 9.211041482737778, 48.787986877156278, 0.0 ], [ 9.210983478425575, 48.787979519775305, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000402ed", "Latitude": 48.79082, "Longitude": 9.19956, "X_coordina": 3514735.65, "Y_coordina": 5405947.03, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 651.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 160.5, "Total_wall": 525.6, "Total_wa00": 0.0, "Total_outw": 753.0, "Total_shar": 199.9, "Total_roof": 160.5, "Gross_volu": 2195.7, "Is_Gross_v": "false", "Heated_vol": 2035.2, "Ridge_mean": 13.7, "Eaves_mean": 13.68, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 8, "Number_o00": 13, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.404, "Heated_are": 651.3, "Mean_Uvalu": 0.43, "Specific_d": "15,8", "Specific_s": 37.9, "Total_Year": 35011.0, "January_He": 6043.0, "February_H": 4245.0, "March_Heat": 2724.0, "April_Heat": 621.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 74.0, "October_He": 1313.0, "November_H": 3764.0, "December_H": 5889.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199559274955982, 48.79092339088173, 0.0 ], [ 9.199444687188084, 48.790855966840674, 0.0 ], [ 9.199395305794718, 48.790827007028383, 0.0 ], [ 9.199437041912248, 48.790781253557455, 0.0 ], [ 9.199470152031404, 48.790756736986459, 0.0 ], [ 9.199645578752385, 48.790859575371464, 0.0 ], [ 9.199559274955982, 48.79092339088173, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00040198", "Latitude": 48.79142, "Longitude": 9.20385, "X_coordina": 3515050.09, "Y_coordina": 5406014.73, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 127.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 54.1, "Total_wall": 87.1, "Total_wa00": 0.0, "Total_outw": 179.0, "Total_shar": 213.1, "Total_roof": 66.2, "Gross_volu": 453.5, "Is_Gross_v": "false", "Heated_vol": 399.3, "Ridge_mean": 9.8, "Eaves_mean": 6.81, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.489, "Heated_are": 127.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 44.5, "Total_Year": 7715.0, "January_He": 1445.0, "February_H": 987.0, "March_Heat": 552.0, "April_Heat": 84.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 274.0, "November_H": 918.0, "December_H": 1418.0, "PV_potenti": 2.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203754343288534, 48.791406038484013, 0.0 ], [ 9.20381343745283, 48.791412947952551, 0.0 ], [ 9.203865450985298, 48.791418970689797, 0.0 ], [ 9.203851530477817, 48.791476636363946, 0.0 ], [ 9.203846356264641, 48.791476016057892, 0.0 ], [ 9.20379529535019, 48.791469991626244, 0.0 ], [ 9.20379502315742, 48.791469992107942, 0.0 ], [ 9.203742737023742, 48.791463879897648, 0.0 ], [ 9.203738924505037, 48.791463437024802, 0.0 ], [ 9.203754343288534, 48.791406038484013, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003fc99", "Latitude": 48.78983, "Longitude": 9.21277, "X_coordina": 3515706.1, "Y_coordina": 5405839.2, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 584.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 145.1, "Total_wall": 542.6, "Total_wa00": 0.0, "Total_outw": 782.4, "Total_shar": 31.8, "Total_roof": 201.0, "Gross_volu": 1972.4, "Is_Gross_v": "false", "Heated_vol": 1827.3, "Ridge_mean": 16.0, "Eaves_mean": 11.09, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 9, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.473, "Heated_are": 584.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 44.9, "Total_Year": 35513.0, "January_He": 6407.0, "February_H": 4540.0, "March_Heat": 2851.0, "April_Heat": 616.0, "May_Heatin": 24.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 77.0, "October_He": 1387.0, "November_H": 4048.0, "December_H": 6301.0, "PV_potenti": 10.16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212634598970672, 48.789871803678786, 0.0 ], [ 9.212608022374553, 48.789830487875705, 0.0 ], [ 9.212790444371507, 48.789779703791339, 0.0 ], [ 9.212815928933036, 48.789820212258078, 0.0 ], [ 9.212813074426535, 48.789821026845786, 0.0 ], [ 9.21283924557193, 48.789862972816444, 0.0 ], [ 9.212815457997905, 48.789869761050007, 0.0 ], [ 9.212816553958779, 48.789871467573718, 0.0 ], [ 9.212661586926693, 48.789913838104887, 0.0 ], [ 9.212634598970672, 48.789871803678786, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003fc19", "Latitude": 48.79547, "Longitude": 9.20924, "X_coordina": 3515445.42, "Y_coordina": 5406466.15, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 95.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 37.8, "Total_wall": 108.7, "Total_wa00": 0.0, "Total_outw": 191.3, "Total_shar": 146.1, "Total_roof": 54.5, "Gross_volu": 323.6, "Is_Gross_v": "false", "Heated_vol": 297.6, "Ridge_mean": 10.7, "Eaves_mean": 6.4, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.65, "Heated_are": 95.2, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 66.5, "Total_Year": 7845.0, "January_He": 1518.0, "February_H": 1083.0, "March_Heat": 690.0, "April_Heat": 160.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 364.0, "November_H": 1005.0, "December_H": 1482.0, "PV_potenti": 1.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209137682178264, 48.795502837807689, 0.0 ], [ 9.209139834103659, 48.795496629175155, 0.0 ], [ 9.209151534885043, 48.795462796672687, 0.0 ], [ 9.209153032811061, 48.795462973799268, 0.0 ], [ 9.209210505914223, 48.795471502064025, 0.0 ], [ 9.209261169564096, 48.795479053514839, 0.0 ], [ 9.20924704509952, 48.795519185080259, 0.0 ], [ 9.209196245304081, 48.795511633870575, 0.0 ], [ 9.209137682178264, 48.795502837807689, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003fbf6", "Latitude": 48.78998, "Longitude": 9.20479, "X_coordina": 3515120.14, "Y_coordina": 5405854.26, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 352.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 93.6, "Total_wall": 327.5, "Total_wa00": 0.0, "Total_outw": 511.0, "Total_shar": 217.7, "Total_roof": 120.2, "Gross_volu": 1329.7, "Is_Gross_v": "false", "Heated_vol": 1236.1, "Ridge_mean": 16.4, "Eaves_mean": 12.51, "Storey_num": 5, "Average_St": 3.1, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.428, "Heated_are": 352.4, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 48.4, "Total_Year": 22643.0, "January_He": 4054.0, "February_H": 2963.0, "March_Heat": 1923.0, "April_Heat": 437.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 981.0, "November_H": 2678.0, "December_H": 3949.0, "PV_potenti": 4.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204786236779755, 48.789969117073547, 0.0 ], [ 9.204818158507589, 48.789987764417688, 0.0 ], [ 9.204845032760385, 48.790003453251771, 0.0 ], [ 9.204771493140852, 48.790058257607086, 0.0 ], [ 9.204654310240096, 48.789989764266338, 0.0 ], [ 9.204727850253427, 48.789935049908081, 0.0 ], [ 9.204756361581852, 48.789951725012514, 0.0 ], [ 9.204786236779755, 48.789969117073547, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003fb67", "Latitude": 48.79008, "Longitude": 9.20465, "X_coordina": 3515109.64, "Y_coordina": 5405865.39, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 813.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 180.9, "Total_wall": 675.6, "Total_wa00": 0.0, "Total_outw": 1004.2, "Total_shar": 29.6, "Total_roof": 243.2, "Gross_volu": 2669.9, "Is_Gross_v": "false", "Heated_vol": 2542.6, "Ridge_mean": 17.2, "Eaves_mean": 11.93, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 13, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.427, "Heated_are": 813.6, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 40.1, "Total_Year": 45531.0, "January_He": 8093.0, "February_H": 5676.0, "March_Heat": 3443.0, "April_Heat": 664.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 74.0, "October_He": 1647.0, "November_H": 5086.0, "December_H": 7939.0, "PV_potenti": 10.62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204659982712993, 48.790146401144845, 0.0 ], [ 9.204647162929261, 48.790139769579092, 0.0 ], [ 9.204627760896127, 48.790154371684096, 0.0 ], [ 9.204614193660525, 48.79016473700824, 0.0 ], [ 9.204587872074253, 48.790184566971227, 0.0 ], [ 9.20447805823097, 48.790121006160319, 0.0 ], [ 9.204627716210361, 48.790009504799592, 0.0 ], [ 9.204733442464589, 48.790071903729114, 0.0 ], [ 9.204736307360124, 48.790073607184681, 0.0 ], [ 9.204709441864692, 48.790093528066386, 0.0 ], [ 9.204695737838064, 48.79010371379615, 0.0 ], [ 9.204676063647446, 48.790118316393134, 0.0 ], [ 9.204688615633087, 48.790126027515214, 0.0 ], [ 9.204689161467096, 48.790126386239528, 0.0 ], [ 9.204661755942187, 48.790147387153347, 0.0 ], [ 9.204659982712993, 48.790146401144845, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003fb6c", "Latitude": 48.79008, "Longitude": 9.2048, "X_coordina": 3515120.32, "Y_coordina": 5405865.76, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 44.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 24.1, "Total_wall": 50.6, "Total_wa00": 0.0, "Total_outw": 113.8, "Total_shar": 73.5, "Total_roof": 24.1, "Gross_volu": 97.2, "Is_Gross_v": "false", "Heated_vol": 97.2, "Ridge_mean": 4.0, "Eaves_mean": 4.03, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.017, "Heated_are": 44.3, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 45.6, "Total_Year": 2720.0, "January_He": 523.0, "February_H": 341.0, "March_Heat": 192.0, "April_Heat": 37.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 4.0, "October_He": 90.0, "November_H": 309.0, "December_H": 520.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204733442464589, 48.790071903729114, 0.0 ], [ 9.204739548339244, 48.790067396692315, 0.0 ], [ 9.204795753518914, 48.790100478570444, 0.0 ], [ 9.20475151865311, 48.790132839810397, 0.0 ], [ 9.204710864976413, 48.790108812553243, 0.0 ], [ 9.204720903644571, 48.790100881428451, 0.0 ], [ 9.204709441864692, 48.790093528066386, 0.0 ], [ 9.204736307360124, 48.790073607184681, 0.0 ], [ 9.204733442464589, 48.790071903729114, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003f9f7", "Latitude": 48.79459, "Longitude": 9.20425, "X_coordina": 3515078.66, "Y_coordina": 5406367.02, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 221.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 116.5, "Total_wall": 328.2, "Total_wa00": 0.0, "Total_outw": 647.5, "Total_shar": 0.0, "Total_roof": 128.3, "Gross_volu": 765.5, "Is_Gross_v": "false", "Heated_vol": 690.6, "Ridge_mean": 10.6, "Eaves_mean": 2.77, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.794, "Heated_are": 221.0, "Mean_Uvalu": 0.39, "Specific_d": "14,6", "Specific_s": 74.3, "Total_Year": 19642.0, "January_He": 3808.0, "February_H": 2768.0, "March_Heat": 1865.0, "April_Heat": 586.0, "May_Heatin": 61.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 133.0, "October_He": 996.0, "November_H": 2479.0, "December_H": 3716.0, "PV_potenti": 3.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20418179583401, 48.794618880420529, 0.0 ], [ 9.204118288803047, 48.794665843176375, 0.0 ], [ 9.204076267429414, 48.794641008826162, 0.0 ], [ 9.204193917169626, 48.79455375427294, 0.0 ], [ 9.204229388343965, 48.794574373790105, 0.0 ], [ 9.204260735458456, 48.794551387685999, 0.0 ], [ 9.204283656178015, 48.794564925485837, 0.0 ], [ 9.204299755240488, 48.79457442882326, 0.0 ], [ 9.204315718204235, 48.794583932399888, 0.0 ], [ 9.204331544338835, 48.794593256369957, 0.0 ], [ 9.204245378037953, 48.794657524721877, 0.0 ], [ 9.204229277864121, 48.794647751608288, 0.0 ], [ 9.204213450636363, 48.79463815785553, 0.0 ], [ 9.204197623049689, 48.794628474177671, 0.0 ], [ 9.20418179583401, 48.794618880420529, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003f589", "Latitude": 48.7876, "Longitude": 9.20866, "X_coordina": 3515405.0, "Y_coordina": 5405590.53, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 801.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 170.7, "Total_wall": 419.7, "Total_wa00": 0.0, "Total_outw": 564.8, "Total_shar": 391.2, "Total_roof": 206.6, "Gross_volu": 2674.6, "Is_Gross_v": "false", "Heated_vol": 2503.9, "Ridge_mean": 17.6, "Eaves_mean": 13.78, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 13, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.31, "Heated_are": 801.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 32.0, "Total_Year": 38312.0, "January_He": 6273.0, "February_H": 4437.0, "March_Heat": 2883.0, "April_Heat": 700.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 1250.0, "November_H": 3852.0, "December_H": 6143.0, "PV_potenti": 9.96 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208497427171348, 48.787651779659193, 0.0 ], [ 9.208512751722772, 48.787606070690387, 0.0 ], [ 9.208529957602293, 48.787554603197805, 0.0 ], [ 9.208735711111343, 48.787585074256206, 0.0 ], [ 9.208717961087915, 48.787636542765476, 0.0 ], [ 9.208705185806005, 48.787673434622064, 0.0 ], [ 9.20870236230407, 48.787681712716335, 0.0 ], [ 9.208497427171348, 48.787651779659193, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003efcd", "Latitude": 48.79463, "Longitude": 9.20939, "X_coordina": 3515456.74, "Y_coordina": 5406372.31, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3044, "PrimaryUsa": "office and administration", "PrimaryU00": 1356.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 493.7, "Total_wall": 1052.5, "Total_wa00": 0.0, "Total_outw": 1679.1, "Total_shar": 106.0, "Total_roof": 493.7, "Gross_volu": 4733.6, "Is_Gross_v": "false", "Heated_vol": 4239.9, "Ridge_mean": 16.4, "Eaves_mean": 16.42, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.451, "Heated_are": 1356.8, "Mean_Uvalu": 0.42, "Specific_d": "14,6", "Specific_s": 62.1, "Total_Year": 104020.0, "January_He": 18836.0, "February_H": 14046.0, "March_Heat": 10142.0, "April_Heat": 3839.0, "May_Heatin": 509.0, "June_Heati": 18, "July_Heati": 2, "August_Hea": 4, "September_": 882.0, "October_He": 5325.0, "November_H": 12322.0, "December_H": 18274.0, "PV_potenti": 19.56 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209240503039817, 48.79460062789726, 0.0 ], [ 9.209271714705546, 48.794512895713929, 0.0 ], [ 9.209504742741908, 48.79454925075386, 0.0 ], [ 9.209507058018753, 48.79454960623606, 0.0 ], [ 9.209500599876305, 48.794567602696539, 0.0 ], [ 9.209491989511747, 48.794591717873722, 0.0 ], [ 9.209483513371936, 48.794615383188216, 0.0 ], [ 9.209460102897209, 48.794680710272964, 0.0 ], [ 9.209524931570673, 48.794690843627151, 0.0 ], [ 9.209493048696139, 48.794780735262712, 0.0 ], [ 9.209325665317339, 48.794754602107474, 0.0 ], [ 9.209303872772669, 48.794750864927828, 0.0 ], [ 9.209292704665183, 48.794749086754045, 0.0 ], [ 9.209268462231917, 48.79474535402008, 0.0 ], [ 9.209265734144301, 48.79474392020056, 0.0 ], [ 9.209259026470574, 48.794734670263018, 0.0 ], [ 9.209264294181336, 48.794724948946936, 0.0 ], [ 9.209278430788752, 48.794720517003618, 0.0 ], [ 9.209301720100811, 48.794724161544231, 0.0 ], [ 9.209308176463944, 48.794705715480838, 0.0 ], [ 9.209241713806003, 48.794695405126518, 0.0 ], [ 9.20917538765401, 48.794685184409474, 0.0 ], [ 9.209208078691436, 48.794593133226797, 0.0 ], [ 9.209211483554242, 48.794593666582642, 0.0 ], [ 9.209210676646665, 48.794596006061042, 0.0 ], [ 9.209240503039817, 48.79460062789726, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003efb2", "Latitude": 48.78814, "Longitude": 9.21131, "X_coordina": 3515599.26, "Y_coordina": 5405651.6, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 149.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 54.3, "Total_wall": 88.0, "Total_wa00": 0.0, "Total_outw": 165.6, "Total_shar": 234.2, "Total_roof": 84.8, "Gross_volu": 522.9, "Is_Gross_v": "false", "Heated_vol": 468.6, "Ridge_mean": 12.3, "Eaves_mean": 6.91, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.46, "Heated_are": 149.9, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 45.8, "Total_Year": 9247.0, "January_He": 1659.0, "February_H": 1186.0, "March_Heat": 753.0, "April_Heat": 164.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 22.0, "October_He": 386.0, "November_H": 1080.0, "December_H": 1616.0, "PV_potenti": 3.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211274548447541, 48.7881363525509, 0.0 ], [ 9.211330510162144, 48.78814335383894, 0.0 ], [ 9.211315084012391, 48.788196706875766, 0.0 ], [ 9.211259394415519, 48.78818970508113, 0.0 ], [ 9.211194582447536, 48.788181640905584, 0.0 ], [ 9.211210281272384, 48.788128377308304, 0.0 ], [ 9.211274548447541, 48.7881363525509, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003ef59", "Latitude": 48.78873, "Longitude": 9.20943, "X_coordina": 3515461.38, "Y_coordina": 5405716.94, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 93.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.1, "Total_wall": 117.6, "Total_wa00": 0.0, "Total_outw": 227.6, "Total_shar": 104.7, "Total_roof": 56.0, "Gross_volu": 334.6, "Is_Gross_v": "false", "Heated_vol": 292.5, "Ridge_mean": 9.8, "Eaves_mean": 6.19, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.697, "Heated_are": 93.6, "Mean_Uvalu": 0.57, "Specific_d": "15,8", "Specific_s": 66.0, "Total_Year": 7663.0, "January_He": 1549.0, "February_H": 1058.0, "March_Heat": 609.0, "April_Heat": 110.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 17.0, "October_He": 311.0, "November_H": 1000.0, "December_H": 1521.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209445456200516, 48.788774824457697, 0.0 ], [ 9.209388443117829, 48.788776906455176, 0.0 ], [ 9.209335648043304, 48.788778800909846, 0.0 ], [ 9.209335361651872, 48.788775384331792, 0.0 ], [ 9.209332230798225, 48.788742477967382, 0.0 ], [ 9.209331643803271, 48.788732227738357, 0.0 ], [ 9.209384574543954, 48.788730243115175, 0.0 ], [ 9.209441587573993, 48.788728161119693, 0.0 ], [ 9.209445456200516, 48.788774824457697, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003ed1f", "Latitude": 48.79054, "Longitude": 9.21233, "X_coordina": 3515673.96, "Y_coordina": 5405918.89, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 200.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 180.9, "Total_wall": 153.3, "Total_wa00": 0.0, "Total_outw": 426.4, "Total_shar": 102.4, "Total_roof": 180.9, "Gross_volu": 604.2, "Is_Gross_v": "false", "Heated_vol": 626.2, "Ridge_mean": 3.4, "Eaves_mean": 2.89, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.886, "Heated_are": 200.4, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 15.4, "Total_Year": 9661.0, "January_He": 1020.0, "February_H": 513.0, "March_Heat": 139.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 20.0, "November_H": 367.0, "December_H": 1012.0, "PV_potenti": 7.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212364799019619, 48.790501766912605, 0.0 ], [ 9.21236904221044, 48.790507514199675, 0.0 ], [ 9.21242042528162, 48.790493121577114, 0.0 ], [ 9.212421325348341, 48.790512903113836, 0.0 ], [ 9.212423544773046, 48.790555073198675, 0.0 ], [ 9.212410071862665, 48.790555187973162, 0.0 ], [ 9.212412837553501, 48.790597806668444, 0.0 ], [ 9.212319179220655, 48.790624147154212, 0.0 ], [ 9.212312742967136, 48.790614717040135, 0.0 ], [ 9.212300645775272, 48.790618336286762, 0.0 ], [ 9.212286953680698, 48.790598758177985, 0.0 ], [ 9.21224127996415, 48.790611611517122, 0.0 ], [ 9.212227089451055, 48.790635197657679, 0.0 ], [ 9.212155016464814, 48.790616536418931, 0.0 ], [ 9.212186236928046, 48.79056495266444, 0.0 ], [ 9.212202549233133, 48.790560426426687, 0.0 ], [ 9.212196793099592, 48.79055090512918, 0.0 ], [ 9.212364799019619, 48.790501766912605, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003ec4b", "Latitude": 48.79065, "Longitude": 9.21338, "X_coordina": 3515751.18, "Y_coordina": 5405931.18, "LOD": "LOD2", "Year_of_co": 1927, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 482.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 130.5, "Total_wall": 343.1, "Total_wa00": 0.0, "Total_outw": 566.7, "Total_shar": 162.6, "Total_roof": 201.9, "Gross_volu": 1637.6, "Is_Gross_v": "false", "Heated_vol": 1507.1, "Ridge_mean": 15.2, "Eaves_mean": 10.04, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.435, "Heated_are": 482.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 40.2, "Total_Year": 27039.0, "January_He": 4788.0, "February_H": 3314.0, "March_Heat": 2103.0, "April_Heat": 482.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 56.0, "October_He": 964.0, "November_H": 2955.0, "December_H": 4721.0, "PV_potenti": 9.16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213433822402836, 48.790629910096179, 0.0 ], [ 9.213434320805504, 48.790715336611456, 0.0 ], [ 9.213247327669281, 48.790715772944431, 0.0 ], [ 9.213247423053115, 48.790674048208302, 0.0 ], [ 9.213247508910815, 48.790630075399029, 0.0 ], [ 9.213433822402836, 48.790629910096179, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003eab8", "Latitude": 48.78861, "Longitude": 9.2123, "X_coordina": 3515672.18, "Y_coordina": 5405703.36, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 87.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.3, "Total_wall": 49.3, "Total_wa00": 0.0, "Total_outw": 106.4, "Total_shar": 208.1, "Total_roof": 52.5, "Gross_volu": 314.2, "Is_Gross_v": "false", "Heated_vol": 272.9, "Ridge_mean": 9.2, "Eaves_mean": 5.92, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.487, "Heated_are": 87.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.8, "Total_Year": 5470.0, "January_He": 1023.0, "February_H": 706.0, "March_Heat": 410.0, "April_Heat": 71.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 209.0, "November_H": 656.0, "December_H": 1002.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212312894617469, 48.788650604703328, 0.0 ], [ 9.212255725609801, 48.788647922453343, 0.0 ], [ 9.212197467519557, 48.788645152258077, 0.0 ], [ 9.212201774937448, 48.788601621273678, 0.0 ], [ 9.212259759283413, 48.788604032276723, 0.0 ], [ 9.21231611057196, 48.788606446261362, 0.0 ], [ 9.212312894617469, 48.788650604703328, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003e5c9", "Latitude": 48.79088, "Longitude": 9.21373, "X_coordina": 3515776.2, "Y_coordina": 5405956.62, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 589.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 164.3, "Total_wall": 347.3, "Total_wa00": 0.0, "Total_outw": 586.9, "Total_shar": 219.3, "Total_roof": 237.1, "Gross_volu": 2005.8, "Is_Gross_v": "false", "Heated_vol": 1841.5, "Ridge_mean": 15.1, "Eaves_mean": 9.62, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.393, "Heated_are": 589.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 37.4, "Total_Year": 31386.0, "January_He": 5512.0, "February_H": 3809.0, "March_Heat": 2304.0, "April_Heat": 442.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 45.0, "October_He": 1075.0, "November_H": 3437.0, "December_H": 5415.0, "PV_potenti": 11.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213752042359578, 48.790829130171538, 0.0 ], [ 9.213752707051626, 48.790857454877276, 0.0 ], [ 9.213755639545536, 48.790971112885217, 0.0 ], [ 9.213683103609728, 48.790971876963312, 0.0 ], [ 9.213611112051391, 48.79097263998603, 0.0 ], [ 9.21360849083621, 48.790836050874702, 0.0 ], [ 9.213720608715516, 48.79083017767077, 0.0 ], [ 9.213749729133898, 48.790829224388702, 0.0 ], [ 9.213752042359578, 48.790829130171538, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003e53f", "Latitude": 48.79186, "Longitude": 9.20177, "X_coordina": 3514897.66, "Y_coordina": 5406062.9, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1070.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 184.2, "Total_wall": 782.5, "Total_wa00": 0.0, "Total_outw": 1043.8, "Total_shar": 59.6, "Total_roof": 269.3, "Gross_volu": 3392.0, "Is_Gross_v": "false", "Heated_vol": 3346.7, "Ridge_mean": 19.5, "Eaves_mean": 15.3, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 17, "Number_o00": 27, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.368, "Heated_are": 1070.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 36.7, "Total_Year": 56232.0, "January_He": 9745.0, "February_H": 6827.0, "March_Heat": 4175.0, "April_Heat": 789.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 84.0, "October_He": 1981.0, "November_H": 6117.0, "December_H": 9529.0, "PV_potenti": 9.63 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201832821342853, 48.791889614326905, 0.0 ], [ 9.2017268435148, 48.791968213399379, 0.0 ], [ 9.201631485267027, 48.791911998307377, 0.0 ], [ 9.201626026030798, 48.79184024883395, 0.0 ], [ 9.201694685870622, 48.791788872147023, 0.0 ], [ 9.201695771765269, 48.791788150856313, 0.0 ], [ 9.201831236264917, 48.79186767574685, 0.0 ], [ 9.201832821342853, 48.791889614326905, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003e540", "Latitude": 48.79179, "Longitude": 9.20169, "X_coordina": 3514891.18, "Y_coordina": 5406055.39, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 19.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 23.5, "Total_wall": 39.5, "Total_wa00": 0.0, "Total_outw": 120.4, "Total_shar": 59.3, "Total_roof": 23.5, "Gross_volu": 69.4, "Is_Gross_v": "false", "Heated_vol": 60.1, "Ridge_mean": 2.9, "Eaves_mean": 2.94, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 1.334, "Heated_are": 19.2, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201587344468145, 48.791832852895119, 0.0 ], [ 9.201668763241846, 48.791772911145848, 0.0 ], [ 9.201694685870622, 48.791788872147023, 0.0 ], [ 9.201626026030798, 48.79184024883395, 0.0 ], [ 9.201614763453208, 48.791848631447465, 0.0 ], [ 9.201590617650041, 48.791834555713635, 0.0 ], [ 9.201587344468145, 48.791832852895119, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003e337", "Latitude": 48.78855, "Longitude": 9.20942, "X_coordina": 3515460.28, "Y_coordina": 5405696.93, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 79.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 39.6, "Total_wall": 43.8, "Total_wa00": 0.0, "Total_outw": 105.2, "Total_shar": 201.2, "Total_roof": 52.8, "Gross_volu": 287.1, "Is_Gross_v": "false", "Heated_vol": 247.5, "Ridge_mean": 9.0, "Eaves_mean": 5.45, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.509, "Heated_are": 79.2, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 46.5, "Total_Year": 4939.0, "January_He": 934.0, "February_H": 636.0, "March_Heat": 358.0, "April_Heat": 58.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 182.0, "November_H": 593.0, "December_H": 915.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209429595550422, 48.788593477300331, 0.0 ], [ 9.20937353529229, 48.788595557557727, 0.0 ], [ 9.209320196426953, 48.788597542917707, 0.0 ], [ 9.209319201170592, 48.788587293430439, 0.0 ], [ 9.209316201566088, 48.788553217818475, 0.0 ], [ 9.209369949398189, 48.7885514115641, 0.0 ], [ 9.209425738553033, 48.788549601572392, 0.0 ], [ 9.209429595550422, 48.788593477300331, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003e2a1", "Latitude": 48.79457, "Longitude": 9.202, "X_coordina": 3514913.23, "Y_coordina": 5406364.4, "LOD": "LOD2", "Year_of_co": 2004, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1437.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 218.8, "Total_wall": 1169.3, "Total_wa00": 0.0, "Total_outw": 1429.4, "Total_shar": 221.8, "Total_roof": 218.8, "Gross_volu": 4493.0, "Is_Gross_v": "false", "Heated_vol": 4493.0, "Ridge_mean": 20.5, "Eaves_mean": 20.53, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 23, "Number_o00": 40, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.358, "Heated_are": 1437.8, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 32.0, "Total_Year": 68769.0, "January_He": 11447.0, "February_H": 7999.0, "March_Heat": 4988.0, "April_Heat": 989.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 92.0, "October_He": 2253.0, "November_H": 7043.0, "December_H": 11159.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201925429727714, 48.794516389470829, 0.0 ], [ 9.201943209629128, 48.79450394884207, 0.0 ], [ 9.202080729910746, 48.79458508842152, 0.0 ], [ 9.202066343968941, 48.794595364950673, 0.0 ], [ 9.202099499075421, 48.79461562949286, 0.0 ], [ 9.202062859089756, 48.794642670856035, 0.0 ], [ 9.202076502812899, 48.794650919882351, 0.0 ], [ 9.202030091387492, 48.794684992418482, 0.0 ], [ 9.201804850985521, 48.794553019878869, 0.0 ], [ 9.201885456899406, 48.794492989506125, 0.0 ], [ 9.201925429727714, 48.794516389470829, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003e27c", "Latitude": 48.79273, "Longitude": 9.20187, "X_coordina": 3514904.5, "Y_coordina": 5406160.32, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 940.9, "SecondaryU": "retail", "Secondar00": 163.4, "BuildingTy": "GMH", "Footprint_": 204.2, "Total_wall": 595.1, "Total_wa00": 0.0, "Total_outw": 821.2, "Total_shar": 511.4, "Total_roof": 235.3, "Gross_volu": 3655.1, "Is_Gross_v": "false", "Heated_vol": 3450.9, "Ridge_mean": 19.6, "Eaves_mean": 15.26, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 18, "Number_o00": 30, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.294, "Heated_are": 1104.3, "Mean_Uvalu": 0.49, "Specific_d": "24,3", "Specific_s": 33.6, "Total_Year": 63981.0, "January_He": 9164.0, "February_H": 6447.0, "March_Heat": 4085.0, "April_Heat": 892.0, "May_Heatin": 29.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 91.0, "October_He": 1854.0, "November_H": 5659.0, "December_H": 8928.0, "PV_potenti": 12.01 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201921567203907, 48.792807758468697, 0.0 ], [ 9.201865116623889, 48.792849492056654, 0.0 ], [ 9.201684222548533, 48.792743699181884, 0.0 ], [ 9.201742712853747, 48.792701512490517, 0.0 ], [ 9.201801338799966, 48.792659235607879, 0.0 ], [ 9.201804066923119, 48.79266075952809, 0.0 ], [ 9.201807052098665, 48.792658506207104, 0.0 ], [ 9.201822604243022, 48.792667651157707, 0.0 ], [ 9.201807677642091, 48.792678737917875, 0.0 ], [ 9.201967975894002, 48.792773416199047, 0.0 ], [ 9.201921567203907, 48.792807758468697, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003e0c6", "Latitude": 48.79044, "Longitude": 9.19936, "X_coordina": 3514720.46, "Y_coordina": 5405904.26, "LOD": "LOD2", "Year_of_co": 1992, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 976.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 184.2, "Total_wall": 693.2, "Total_wa00": 0.0, "Total_outw": 914.6, "Total_shar": 211.4, "Total_roof": 215.8, "Gross_volu": 3089.4, "Is_Gross_v": "false", "Heated_vol": 3052.9, "Ridge_mean": 18.5, "Eaves_mean": 15.25, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 16, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.357, "Heated_are": 976.9, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 34.2, "Total_Year": 48898.0, "January_He": 8314.0, "February_H": 5808.0, "March_Heat": 3590.0, "April_Heat": 683.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 69.0, "October_He": 1670.0, "November_H": 5171.0, "December_H": 8102.0, "PV_potenti": 9.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199447238199474, 48.790469470714179, 0.0 ], [ 9.19934858839042, 48.790542929280555, 0.0 ], [ 9.199177119704814, 48.790442511529889, 0.0 ], [ 9.199226104972599, 48.790405917803156, 0.0 ], [ 9.199275904593343, 48.790368783104405, 0.0 ], [ 9.199447238199474, 48.790469470714179, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003e0c7", "Latitude": 48.79054, "Longitude": 9.19932, "X_coordina": 3514718.01, "Y_coordina": 5405915.93, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 60.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 19.7, "Total_wall": 103.4, "Total_wa00": 0.0, "Total_outw": 163.0, "Total_shar": 81.6, "Total_roof": 21.7, "Gross_volu": 158.4, "Is_Gross_v": "false", "Heated_vol": 158.4, "Ridge_mean": 9.5, "Eaves_mean": 9.48, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.913, "Heated_are": 60.5, "Mean_Uvalu": 0.52, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199324871686549, 48.790568148947763, 0.0 ], [ 9.199295561213585, 48.790589871269859, 0.0 ], [ 9.199233492810436, 48.790553199911784, 0.0 ], [ 9.199262123887712, 48.7905317485518, 0.0 ], [ 9.199324871686549, 48.790568148947763, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003df81", "Latitude": 48.78872, "Longitude": 9.20594, "X_coordina": 3515204.67, "Y_coordina": 5405715.15, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 667.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 160.1, "Total_wall": 564.9, "Total_wa00": 0.0, "Total_outw": 774.3, "Total_shar": 28.4, "Total_roof": 249.7, "Gross_volu": 2246.7, "Is_Gross_v": "false", "Heated_vol": 2086.6, "Ridge_mean": 17.7, "Eaves_mean": 10.32, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 11, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.454, "Heated_are": 667.7, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 39.5, "Total_Year": 36948.0, "January_He": 6581.0, "February_H": 4577.0, "March_Heat": 2739.0, "April_Heat": 518.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 57.0, "October_He": 1301.0, "November_H": 4113.0, "December_H": 6470.0, "PV_potenti": 11.83 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205944076814259, 48.78869517231778, 0.0 ], [ 9.20601360066601, 48.788724003379137, 0.0 ], [ 9.20591751575239, 48.788822461777592, 0.0 ], [ 9.205848399351158, 48.788793450083134, 0.0 ], [ 9.205776284290376, 48.788763274697999, 0.0 ], [ 9.205803116295172, 48.788735440341632, 0.0 ], [ 9.205871145304521, 48.78866499845158, 0.0 ], [ 9.205944076814259, 48.78869517231778, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003df82", "Latitude": 48.78872, "Longitude": 9.2058, "X_coordina": 3515194.11, "Y_coordina": 5405715.01, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 49.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 27.0, "Total_wall": 57.6, "Total_wa00": 0.0, "Total_outw": 128.0, "Total_shar": 62.2, "Total_roof": 27.0, "Gross_volu": 110.9, "Is_Gross_v": "false", "Heated_vol": 110.9, "Ridge_mean": 4.1, "Eaves_mean": 4.12, "Storey_num": 2, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.006, "Heated_are": 49.5, "Mean_Uvalu": 0.45, "Specific_d": "32,9", "Specific_s": 13.0, "Total_Year": 2269.0, "January_He": 218.0, "February_H": 105.0, "March_Heat": 32.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 4.0, "November_H": 69.0, "December_H": 215.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205748815624034, 48.788768539349803, 0.0 ], [ 9.205699506908484, 48.788757746675323, 0.0 ], [ 9.205720162018046, 48.788716974365961, 0.0 ], [ 9.205803116295172, 48.788735440341632, 0.0 ], [ 9.205776284290376, 48.788763274697999, 0.0 ], [ 9.205748815624034, 48.788768539349803, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003df83", "Latitude": 48.7887, "Longitude": 9.20569, "X_coordina": 3515186.57, "Y_coordina": 5405712.88, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 65.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 45.4, "Total_wall": 90.6, "Total_wa00": 0.0, "Total_outw": 179.9, "Total_shar": 74.6, "Total_roof": 47.0, "Gross_volu": 225.9, "Is_Gross_v": "false", "Heated_vol": 203.3, "Ridge_mean": 5.6, "Eaves_mean": 5.6, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.854, "Heated_are": 65.1, "Mean_Uvalu": 0.44, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.72 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205699506908484, 48.788757746675323, 0.0 ], [ 9.205576914738339, 48.78873053887439, 0.0 ], [ 9.205597706024975, 48.78868976634368, 0.0 ], [ 9.205720162018046, 48.788716974365961, 0.0 ], [ 9.205699506908484, 48.788757746675323, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003df7f", "Latitude": 48.78846, "Longitude": 9.20516, "X_coordina": 3515147.33, "Y_coordina": 5405685.27, "LOD": "LOD2", "Year_of_co": 1947, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 245.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 124.7, "Total_wall": 237.5, "Total_wa00": 0.0, "Total_outw": 461.1, "Total_shar": 0.0, "Total_roof": 168.9, "Gross_volu": 798.4, "Is_Gross_v": "false", "Heated_vol": 767.6, "Ridge_mean": 8.5, "Eaves_mean": 4.21, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.678, "Heated_are": 245.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 54.1, "Total_Year": 17185.0, "January_He": 3279.0, "February_H": 2269.0, "March_Heat": 1386.0, "April_Heat": 313.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 45.0, "October_He": 689.0, "November_H": 2062.0, "December_H": 3235.0, "PV_potenti": 7.87 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205032893767205, 48.788446270934358, 0.0 ], [ 9.205047911261374, 48.788424572595183, 0.0 ], [ 9.205055623219817, 48.788413498253846, 0.0 ], [ 9.205223628510149, 48.788464365533549, 0.0 ], [ 9.205196705337206, 48.78850326052796, 0.0 ], [ 9.205171675996692, 48.788539364508509, 0.0 ], [ 9.205003398697842, 48.788488587561595, 0.0 ], [ 9.205027346754985, 48.788454284015458, 0.0 ], [ 9.205032893767205, 48.788446270934358, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003defa", "Latitude": 48.78997, "Longitude": 9.19927, "X_coordina": 3514714.53, "Y_coordina": 5405852.34, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 2956.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 483.4, "Total_wall": 1703.0, "Total_wa00": 0.0, "Total_outw": 2108.2, "Total_shar": 333.4, "Total_roof": 493.4, "Gross_volu": 9348.9, "Is_Gross_v": "false", "Heated_vol": 9237.8, "Ridge_mean": 23.6, "Eaves_mean": 16.03, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.289, "Heated_are": 2956.1, "Mean_Uvalu": 0.47, "Specific_d": "73,0", "Specific_s": 43.5, "Total_Year": 344382.0, "January_He": 29760.0, "February_H": 22179.0, "March_Heat": 15395.0, "April_Heat": 4862.0, "May_Heatin": 419.0, "June_Heati": 11, "July_Heati": 1, "August_Hea": 2, "September_": 842.0, "October_He": 7314.0, "November_H": 18957.0, "December_H": 28814.0, "PV_potenti": 20.07 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199117528789701, 48.790103242828941, 0.0 ], [ 9.198986982250862, 48.790026134164989, 0.0 ], [ 9.199039898639564, 48.789985667005787, 0.0 ], [ 9.199037988722131, 48.789984501299763, 0.0 ], [ 9.199080466117639, 48.789954213534124, 0.0 ], [ 9.199082511771493, 48.789955289081149, 0.0 ], [ 9.199125247778932, 48.789921583753866, 0.0 ], [ 9.199156349764069, 48.789939964312822, 0.0 ], [ 9.199360812052076, 48.78988394779865, 0.0 ], [ 9.1993938468112, 48.789874898240527, 0.0 ], [ 9.19939699688282, 48.789879928509379, 0.0 ], [ 9.199389520010646, 48.78988200969907, 0.0 ], [ 9.199413081793185, 48.789920815908104, 0.0 ], [ 9.19946457218775, 48.790001388226869, 0.0 ], [ 9.19946960226196, 48.790000030659634, 0.0 ], [ 9.199472341220089, 48.790004342249432, 0.0 ], [ 9.199240285590378, 48.790068949449385, 0.0 ], [ 9.199117528789701, 48.790103242828941, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003defb", "Latitude": 48.79007, "Longitude": 9.19922, "X_coordina": 3514710.78, "Y_coordina": 5405864.09, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 40.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 22.3, "Total_wall": 65.1, "Total_wa00": 0.0, "Total_outw": 123.1, "Total_shar": 92.4, "Total_roof": 22.3, "Gross_volu": 111.9, "Is_Gross_v": "false", "Heated_vol": 111.9, "Ridge_mean": 5.0, "Eaves_mean": 4.99, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.98, "Heated_are": 40.3, "Mean_Uvalu": 0.51, "Specific_d": "73,0", "Specific_s": 79.7, "Total_Year": 6159.0, "January_He": 774.0, "February_H": 550.0, "March_Heat": 341.0, "April_Heat": 81.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 19.0, "October_He": 185.0, "November_H": 508.0, "December_H": 752.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199236852564093, 48.790095572782533, 0.0 ], [ 9.1991468577638, 48.790120637295736, 0.0 ], [ 9.199117528789701, 48.790103242828941, 0.0 ], [ 9.199240285590378, 48.790068949449385, 0.0 ], [ 9.199236852564093, 48.790095572782533, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003defc", "Latitude": 48.78991, "Longitude": 9.19965, "X_coordina": 3514742.01, "Y_coordina": 5405845.88, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 1805.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 324.7, "Total_wall": 1184.7, "Total_wa00": 0.0, "Total_outw": 1596.4, "Total_shar": 241.9, "Total_roof": 326.5, "Gross_volu": 5965.5, "Is_Gross_v": "false", "Heated_vol": 5640.8, "Ridge_mean": 20.3, "Eaves_mean": 17.27, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.319, "Heated_are": 1805.1, "Mean_Uvalu": 0.44, "Specific_d": "73,0", "Specific_s": 41.3, "Total_Year": 206265.0, "January_He": 17726.0, "February_H": 12887.0, "March_Heat": 8593.0, "April_Heat": 2416.0, "May_Heatin": 177.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 395.0, "October_He": 4010.0, "November_H": 11057.0, "December_H": 17212.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199650166216314, 48.789854760861914, 0.0 ], [ 9.19964893318247, 48.789852694756156, 0.0 ], [ 9.199718535939517, 48.789833330406594, 0.0 ], [ 9.199760988961359, 48.78989989018136, 0.0 ], [ 9.199793581682643, 48.789950910259776, 0.0 ], [ 9.199723843770546, 48.789970544659568, 0.0 ], [ 9.199719596713498, 48.789963448058792, 0.0 ], [ 9.199487130461437, 48.790027337079422, 0.0 ], [ 9.199472341220089, 48.790004342249432, 0.0 ], [ 9.19946960226196, 48.790000030659634, 0.0 ], [ 9.19946457218775, 48.790001388226869, 0.0 ], [ 9.199444167537317, 48.789969410756733, 0.0 ], [ 9.199413081793185, 48.789920815908104, 0.0 ], [ 9.199650166216314, 48.789854760861914, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003defd", "Latitude": 48.78974, "Longitude": 9.19958, "X_coordina": 3514736.77, "Y_coordina": 5405827.3, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 175.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 114.1, "Total_wall": 172.4, "Total_wa00": 0.0, "Total_outw": 529.1, "Total_shar": 0.0, "Total_roof": 115.6, "Gross_volu": 363.4, "Is_Gross_v": "false", "Heated_vol": 363.4, "Ridge_mean": 3.8, "Eaves_mean": 3.82, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.107, "Heated_are": 175.9, "Mean_Uvalu": 0.45, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19967238143464, 48.78975994283757, 0.0 ], [ 9.199480977696108, 48.789814138813085, 0.0 ], [ 9.199473035174551, 48.789801743110289, 0.0 ], [ 9.199412949182907, 48.789818662894135, 0.0 ], [ 9.199390488297265, 48.789782912181693, 0.0 ], [ 9.199638833107974, 48.789708115067199, 0.0 ], [ 9.19967238143464, 48.78975994283757, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003defe", "Latitude": 48.78969, "Longitude": 9.19978, "X_coordina": 3514751.54, "Y_coordina": 5405821.86, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 33.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 36.4, "Total_wall": 37.9, "Total_wa00": 0.0, "Total_outw": 184.9, "Total_shar": 0.0, "Total_roof": 36.4, "Gross_volu": 56.5, "Is_Gross_v": "false", "Heated_vol": 56.5, "Ridge_mean": 1.6, "Eaves_mean": 1.57, "Storey_num": 1, "Average_St": 1.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.961, "Heated_are": 33.8, "Mean_Uvalu": 0.33, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199785489145494, 48.789729352474389, 0.0 ], [ 9.19970976564008, 48.78974953679252, 0.0 ], [ 9.199678808374999, 48.7896990533946, 0.0 ], [ 9.199754939734838, 48.789678778465515, 0.0 ], [ 9.199785489145494, 48.789729352474389, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003dd80", "Latitude": 48.78993, "Longitude": 9.19846, "X_coordina": 3514654.74, "Y_coordina": 5405847.54, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1120.3, "SecondaryU": "retail", "Secondar00": 201.0, "BuildingTy": "GMH", "Footprint_": 251.3, "Total_wall": 740.2, "Total_wa00": 0.0, "Total_outw": 1029.4, "Total_shar": 348.9, "Total_roof": 286.0, "Gross_volu": 4251.9, "Is_Gross_v": "false", "Heated_vol": 4129.1, "Ridge_mean": 18.8, "Eaves_mean": 15.0, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 21, "Number_o00": 40, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.306, "Heated_are": 1321.3, "Mean_Uvalu": 0.44, "Specific_d": "24,5", "Specific_s": 32.6, "Total_Year": 75514.0, "January_He": 10625.0, "February_H": 7526.0, "March_Heat": 4732.0, "April_Heat": 977.0, "May_Heatin": 27.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 98.0, "October_He": 2157.0, "November_H": 6609.0, "December_H": 10341.0, "PV_potenti": 14.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198383532215807, 48.789850565325033, 0.0 ], [ 9.198388824916735, 48.789846779414496, 0.0 ], [ 9.198569844495774, 48.789954285846029, 0.0 ], [ 9.198509458285026, 48.789998722306187, 0.0 ], [ 9.198442557963537, 48.790047845988575, 0.0 ], [ 9.198305877811785, 48.78996804941319, 0.0 ], [ 9.198261538318695, 48.789940339358971, 0.0 ], [ 9.198315953987308, 48.789900319568467, 0.0 ], [ 9.19832857405796, 48.789891035700265, 0.0 ], [ 9.198383532215807, 48.789850565325033, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003dd81", "Latitude": 48.78984, "Longitude": 9.19837, "X_coordina": 3514648.0000000005, "Y_coordina": 5405837.81, "LOD": "LOD2", "Year_of_co": 1971, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 167.8, "SecondaryU": "retail", "Secondar00": 30.6, "BuildingTy": "GMH", "Footprint_": 38.3, "Total_wall": 271.5, "Total_wa00": 0.0, "Total_outw": 373.6, "Total_shar": 164.8, "Total_roof": 57.5, "Gross_volu": 658.5, "Is_Gross_v": "false", "Heated_vol": 620.2, "Ridge_mean": 19.1, "Eaves_mean": 15.28, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 3, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.584, "Heated_are": 198.5, "Mean_Uvalu": 0.52, "Specific_d": "24,7", "Specific_s": 49.1, "Total_Year": 14646.0, "January_He": 2487.0, "February_H": 1666.0, "March_Heat": 949.0, "April_Heat": 196.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 25.0, "October_He": 446.0, "November_H": 1492.0, "December_H": 2478.0, "PV_potenti": 2.66 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198263709514503, 48.789869655648303, 0.0 ], [ 9.198276600708386, 48.789860101548058, 0.0 ], [ 9.198330878768942, 48.789819722292343, 0.0 ], [ 9.198383532215807, 48.789850565325033, 0.0 ], [ 9.19832857405796, 48.789891035700265, 0.0 ], [ 9.198315953987308, 48.789900319568467, 0.0 ], [ 9.198263709514503, 48.789869655648303, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003dd82", "Latitude": 48.79005, "Longitude": 9.19833, "X_coordina": 3514645.44, "Y_coordina": 5405861.38, "LOD": "LOD2", "Year_of_co": 1971, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 915.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 252.5, "Total_wall": 195.2, "Total_wa00": 0.0, "Total_outw": 303.4, "Total_shar": 633.2, "Total_roof": 252.5, "Gross_volu": 2354.6, "Is_Gross_v": "false", "Heated_vol": 2354.6, "Ridge_mean": 9.3, "Eaves_mean": 9.33, "Storey_num": 4, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.297, "Heated_are": 915.8, "Mean_Uvalu": 0.36, "Specific_d": "32,9", "Specific_s": 0.9, "Total_Year": 30919.0, "January_He": 354.0, "February_H": 132.0, "March_Heat": 14.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 33.0, "December_H": 293.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198442557963537, 48.790047845988575, 0.0 ], [ 9.198435501360667, 48.790052983795398, 0.0 ], [ 9.198396149725424, 48.790082276777696, 0.0 ], [ 9.198270768202571, 48.790175923369922, 0.0 ], [ 9.198136814077255, 48.790097200985727, 0.0 ], [ 9.198165308208848, 48.79007548036131, 0.0 ], [ 9.198183625472467, 48.79006142075292, 0.0 ], [ 9.198305877811785, 48.78996804941319, 0.0 ], [ 9.198442557963537, 48.790047845988575, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003dd79", "Latitude": 48.79021, "Longitude": 9.21178, "X_coordina": 3515633.7, "Y_coordina": 5405881.8, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 539.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 127.9, "Total_wall": 302.1, "Total_wa00": 0.0, "Total_outw": 459.3, "Total_shar": 336.9, "Total_roof": 185.4, "Gross_volu": 1813.9, "Is_Gross_v": "false", "Heated_vol": 1686.1, "Ridge_mean": 16.7, "Eaves_mean": 11.63, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 9, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.355, "Heated_are": 539.5, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 37.8, "Total_Year": 28917.0, "January_He": 4917.0, "February_H": 3584.0, "March_Heat": 2273.0, "April_Heat": 470.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 1079.0, "November_H": 3172.0, "December_H": 4812.0, "PV_potenti": 8.57 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211851240319829, 48.790225748035873, 0.0 ], [ 9.211714792241072, 48.790303333283383, 0.0 ], [ 9.21167069307163, 48.790269872835204, 0.0 ], [ 9.211628505691081, 48.790237937558388, 0.0 ], [ 9.211764952591087, 48.790160082643446, 0.0 ], [ 9.211806867428422, 48.790191928448365, 0.0 ], [ 9.211851240319829, 48.790225748035873, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003dcad", "Latitude": 48.79258, "Longitude": 9.20158, "X_coordina": 3514883.54, "Y_coordina": 5406142.67, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 132.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 72.0, "Total_wall": 128.2, "Total_wa00": 0.0, "Total_outw": 286.6, "Total_shar": 37.7, "Total_roof": 72.0, "Gross_volu": 291.9, "Is_Gross_v": "false", "Heated_vol": 291.9, "Ridge_mean": 4.1, "Eaves_mean": 4.05, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.933, "Heated_are": 132.3, "Mean_Uvalu": 0.36, "Specific_d": "73,0", "Specific_s": 50.4, "Total_Year": 16326.0, "January_He": 1561.0, "February_H": 1139.0, "March_Heat": 767.0, "April_Heat": 235.0, "May_Heatin": 22.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 45.0, "October_He": 382.0, "November_H": 993.0, "December_H": 1520.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201544047355725, 48.792541976219447, 0.0 ], [ 9.201589473616702, 48.79256815439517, 0.0 ], [ 9.201595717975859, 48.79256409690246, 0.0 ], [ 9.201625867277443, 48.792581848989393, 0.0 ], [ 9.201621388247545, 48.792584914233494, 0.0 ], [ 9.201618525115531, 48.792583660316083, 0.0 ], [ 9.201527193834789, 48.792649644249039, 0.0 ], [ 9.201498273024061, 48.792632789222786, 0.0 ], [ 9.20149677989002, 48.792633780994862, 0.0 ], [ 9.201454488946013, 48.792608856228306, 0.0 ], [ 9.201544047355725, 48.792541976219447, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003dadd", "Latitude": 48.79505, "Longitude": 9.20393, "X_coordina": 3515055.17, "Y_coordina": 5406417.86, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 915.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 211.2, "Total_wall": 667.7, "Total_wa00": 0.0, "Total_outw": 894.1, "Total_shar": 356.1, "Total_roof": 211.2, "Gross_volu": 2859.4, "Is_Gross_v": "false", "Heated_vol": 2859.4, "Ridge_mean": 15.2, "Eaves_mean": 15.16, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 11, "Number_o00": 22, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.381, "Heated_are": 915.0, "Mean_Uvalu": 0.37, "Specific_d": "15,8", "Specific_s": 32.5, "Total_Year": 44273.0, "January_He": 7305.0, "February_H": 5189.0, "March_Heat": 3307.0, "April_Heat": 709.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1522.0, "November_H": 4554.0, "December_H": 7107.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204020697278487, 48.795101336032261, 0.0 ], [ 9.203918444378678, 48.795159517831252, 0.0 ], [ 9.203847308911683, 48.795104340790424, 0.0 ], [ 9.203835902584043, 48.795110925399698, 0.0 ], [ 9.203824140026244, 48.795130369705795, 0.0 ], [ 9.203794979410018, 48.795122058424525, 0.0 ], [ 9.20380661097038, 48.795103873282898, 0.0 ], [ 9.203816484070204, 48.795088388958789, 0.0 ], [ 9.203822730747058, 48.795084870884402, 0.0 ], [ 9.20375146120519, 48.795030143638776, 0.0 ], [ 9.203856032207577, 48.794973036965722, 0.0 ], [ 9.203891123644835, 48.795000671294673, 0.0 ], [ 9.203905653816623, 48.794992462524725, 0.0 ], [ 9.203998635064327, 48.795064596384833, 0.0 ], [ 9.203984104157835, 48.795072625320607, 0.0 ], [ 9.204020697278487, 48.795101336032261, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003d9dd", "Latitude": 48.7879, "Longitude": 9.19486, "X_coordina": 3514391.08, "Y_coordina": 5405621.98, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 983.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 196.9, "Total_wall": 638.0, "Total_wa00": 0.0, "Total_outw": 945.0, "Total_shar": 349.7, "Total_roof": 213.8, "Gross_volu": 3270.0, "Is_Gross_v": "false", "Heated_vol": 3073.1, "Ridge_mean": 17.7, "Eaves_mean": 15.49, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 16, "Number_o00": 24, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.334, "Heated_are": 983.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 34.0, "Total_Year": 49011.0, "January_He": 8118.0, "February_H": 5772.0, "March_Heat": 3796.0, "April_Heat": 971.0, "May_Heatin": 34.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 90.0, "October_He": 1675.0, "November_H": 5029.0, "December_H": 7948.0, "PV_potenti": 10.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194685671870326, 48.787965962057797, 0.0 ], [ 9.194690512973148, 48.787915776471145, 0.0 ], [ 9.194694702159394, 48.787872965726237, 0.0 ], [ 9.194953723644439, 48.787885026887409, 0.0 ], [ 9.194949528407294, 48.787926219026048, 0.0 ], [ 9.194944283132191, 48.78797739446798, 0.0 ], [ 9.194685671870326, 48.787965962057797, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003d755", "Latitude": 48.78851, "Longitude": 9.21189, "X_coordina": 3515642.05, "Y_coordina": 5405692.56, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 87.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.6, "Total_wall": 50.5, "Total_wa00": 0.0, "Total_outw": 115.9, "Total_shar": 236.2, "Total_roof": 58.1, "Gross_volu": 344.0, "Is_Gross_v": "false", "Heated_vol": 301.5, "Ridge_mean": 10.1, "Eaves_mean": 6.05, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.468, "Heated_are": 87.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.1, "Total_Year": 5509.0, "January_He": 1042.0, "February_H": 712.0, "March_Heat": 403.0, "April_Heat": 66.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 205.0, "November_H": 665.0, "December_H": 1022.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211850268617232, 48.788507758680382, 0.0 ], [ 9.211908394985189, 48.788511608377405, 0.0 ], [ 9.211902183976083, 48.78855559247247, 0.0 ], [ 9.211844057557821, 48.78855174277242, 0.0 ], [ 9.211784433797332, 48.78854780587303, 0.0 ], [ 9.211791461816567, 48.788503910205385, 0.0 ], [ 9.211850268617232, 48.788507758680382, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003d404", "Latitude": 48.78828, "Longitude": 9.21061, "X_coordina": 3515548.08, "Y_coordina": 5405666.42, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 138.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 58.0, "Total_wall": 115.8, "Total_wa00": 0.0, "Total_outw": 187.5, "Total_shar": 112.5, "Total_roof": 94.2, "Gross_volu": 457.8, "Is_Gross_v": "false", "Heated_vol": 431.8, "Ridge_mean": 10.4, "Eaves_mean": 5.33, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.605, "Heated_are": 138.2, "Mean_Uvalu": 0.54, "Specific_d": "15,8", "Specific_s": 54.3, "Total_Year": 9692.0, "January_He": 1888.0, "February_H": 1258.0, "March_Heat": 763.0, "April_Heat": 176.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 24.0, "October_He": 362.0, "November_H": 1147.0, "December_H": 1878.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210615717081131, 48.788324870339359, 0.0 ], [ 9.210615623164308, 48.7883316957166, 0.0 ], [ 9.210615631104533, 48.788333593091231, 0.0 ], [ 9.21051638982493, 48.788332335770733, 0.0 ], [ 9.210518021736913, 48.788260483786011, 0.0 ], [ 9.210616814952283, 48.788262020687903, 0.0 ], [ 9.210616597681296, 48.788275140946816, 0.0 ], [ 9.210615717081131, 48.788324870339359, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003d381", "Latitude": 48.79539, "Longitude": 9.21167, "X_coordina": 3515624.01, "Y_coordina": 5406457.64, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 134.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 113.1, "Total_wall": 138.7, "Total_wa00": 0.0, "Total_outw": 333.2, "Total_shar": 78.2, "Total_roof": 116.8, "Gross_volu": 531.7, "Is_Gross_v": "false", "Heated_vol": 418.6, "Ridge_mean": 7.0, "Eaves_mean": 3.46, "Storey_num": 2, "Average_St": 3.0, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.762, "Heated_are": 134.0, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 68.7, "Total_Year": 11326.0, "January_He": 2322.0, "February_H": 1567.0, "March_Heat": 888.0, "April_Heat": 164.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 26.0, "October_He": 458.0, "November_H": 1486.0, "December_H": 2287.0, "PV_potenti": 4.08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211580449048247, 48.795348563127646, 0.0 ], [ 9.211625358240671, 48.795347041833296, 0.0 ], [ 9.211681835372579, 48.79534522948817, 0.0 ], [ 9.211685204547166, 48.795401965052854, 0.0 ], [ 9.211689305717421, 48.795470928873428, 0.0 ], [ 9.211581252159522, 48.795474814310147, 0.0 ], [ 9.211580539860709, 48.795467262041072, 0.0 ], [ 9.21157953455074, 48.795454764515327, 0.0 ], [ 9.211575385149592, 48.795406663041916, 0.0 ], [ 9.21157051476432, 48.795348941073037, 0.0 ], [ 9.211580449048247, 48.795348563127646, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003d383", "Latitude": 48.79529, "Longitude": 9.21167, "X_coordina": 3515623.9, "Y_coordina": 5406446.34, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 123.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 64.9, "Total_wall": 137.5, "Total_wa00": 0.0, "Total_outw": 281.4, "Total_shar": 78.5, "Total_roof": 70.3, "Gross_volu": 406.7, "Is_Gross_v": "false", "Heated_vol": 386.1, "Ridge_mean": 7.0, "Eaves_mean": 5.47, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.699, "Heated_are": 123.5, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 44.1, "Total_Year": 7400.0, "January_He": 1477.0, "February_H": 903.0, "March_Heat": 449.0, "April_Heat": 71.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 203.0, "November_H": 840.0, "December_H": 1490.0, "PV_potenti": 2.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211620676434869, 48.795269446415368, 0.0 ], [ 9.211677156128049, 48.79526826353262, 0.0 ], [ 9.211681835372579, 48.79534522948817, 0.0 ], [ 9.211625358240671, 48.795347041833296, 0.0 ], [ 9.211580449048247, 48.795348563127646, 0.0 ], [ 9.211573995657126, 48.795270431421358, 0.0 ], [ 9.211620676434869, 48.795269446415368, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003d333", "Latitude": 48.79299, "Longitude": 9.20255, "X_coordina": 3514954.66, "Y_coordina": 5406189.04, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 533.7, "SecondaryU": "retail", "Secondar00": 113.0, "BuildingTy": "GMH", "Footprint_": 141.3, "Total_wall": 451.9, "Total_wa00": 0.0, "Total_outw": 669.7, "Total_shar": 367.3, "Total_roof": 163.0, "Gross_volu": 2162.4, "Is_Gross_v": "false", "Heated_vol": 2021.1, "Ridge_mean": 16.9, "Eaves_mean": 13.11, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 10, "Number_o00": 18, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.365, "Heated_are": 646.8, "Mean_Uvalu": 0.44, "Specific_d": "25,8", "Specific_s": 37.9, "Total_Year": 41228.0, "January_He": 5928.0, "February_H": 4310.0, "March_Heat": 2732.0, "April_Heat": 574.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1303.0, "November_H": 3816.0, "December_H": 5778.0, "PV_potenti": 8.14 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20249788242125, 48.793094142266668, 0.0 ], [ 9.202491336194361, 48.79309082660513, 0.0 ], [ 9.202494050248625, 48.793088843513999, 0.0 ], [ 9.202458852309253, 48.793068043130042, 0.0 ], [ 9.202435250811224, 48.793054146466304, 0.0 ], [ 9.202423381835885, 48.79304715329075, 0.0 ], [ 9.202448215897785, 48.793029124918895, 0.0 ], [ 9.202404694182455, 48.793002943736226, 0.0 ], [ 9.202503066704111, 48.792928134219096, 0.0 ], [ 9.202560637154942, 48.792961844235329, 0.0 ], [ 9.202614796841821, 48.792993491981321, 0.0 ], [ 9.202516683893466, 48.793065153811142, 0.0 ], [ 9.202528414975568, 48.793071697601697, 0.0 ], [ 9.20249788242125, 48.793094142266668, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003d334", "Latitude": 48.79288, "Longitude": 9.20242, "X_coordina": 3514944.59, "Y_coordina": 5406176.61, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 117.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 43.1, "Total_wall": 147.9, "Total_wa00": 0.0, "Total_outw": 268.4, "Total_shar": 65.2, "Total_roof": 43.1, "Gross_volu": 296.0, "Is_Gross_v": "false", "Heated_vol": 296.0, "Ridge_mean": 6.9, "Eaves_mean": 6.88, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.791, "Heated_are": 117.3, "Mean_Uvalu": 0.49, "Specific_d": "32,9", "Specific_s": 14.7, "Total_Year": 5577.0, "January_He": 567.0, "February_H": 301.0, "March_Heat": 83.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 11.0, "November_H": 206.0, "December_H": 550.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202381650959618, 48.792857128184217, 0.0 ], [ 9.20243649273146, 48.792889224433779, 0.0 ], [ 9.202365115570361, 48.792941955181618, 0.0 ], [ 9.202308097627927, 48.79291022241582, 0.0 ], [ 9.202357495289663, 48.792874615808707, 0.0 ], [ 9.202381650959618, 48.792857128184217, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cf97", "Latitude": 48.78762, "Longitude": 9.19572, "X_coordina": 3514454.37, "Y_coordina": 5405590.02, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3041, "PrimaryUsa": "event location", "PrimaryU00": 4888.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 840.2, "Total_wall": 2238.1, "Total_wa00": 0.0, "Total_outw": 2399.6, "Total_shar": 333.3, "Total_roof": 1365.2, "Gross_volu": 16116.7, "Is_Gross_v": "false", "Heated_vol": 15276.4, "Ridge_mean": 26.8, "Eaves_mean": 5.9, "Storey_num": 10, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.286, "Heated_are": 4888.5, "Mean_Uvalu": 1.38, "Specific_d": "non calculated", "Specific_s": 101.0, "Total_Year": 493863.00000000006, "January_He": 97671.0, "February_H": 76877.0, "March_Heat": 62411.0, "April_Heat": 31938.0, "May_Heatin": 8132.0, "June_Heati": 507, "July_Heati": 44, "August_Hea": 105, "September_": 12493.0, "October_He": 39460.0, "November_H": 69537.0, "December_H": 94689.0, "PV_potenti": 60.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195551924926505, 48.787712418182394, 0.0 ], [ 9.195550606275624, 48.787710462163083, 0.0 ], [ 9.195561807116537, 48.787707165145406, 0.0 ], [ 9.195563125767803, 48.787709121173606, 0.0 ], [ 9.195568201960478, 48.787707626968867, 0.0 ], [ 9.195565549560271, 48.787703692511265, 0.0 ], [ 9.195571229221052, 48.787702020680442, 0.0 ], [ 9.195569816371464, 48.78769992491808, 0.0 ], [ 9.195573524601095, 48.787698833385484, 0.0 ], [ 9.195551692672517, 48.787666448871711, 0.0 ], [ 9.195547984458399, 48.787667540403575, 0.0 ], [ 9.195546798852282, 48.787665781729537, 0.0 ], [ 9.195540910662086, 48.787667514944459, 0.0 ], [ 9.195536449409529, 48.787660897295076, 0.0 ], [ 9.195542337599134, 48.787659164089384, 0.0 ], [ 9.195540835221422, 48.787656935526542, 0.0 ], [ 9.195544543448529, 48.787655843994877, 0.0 ], [ 9.195523367602814, 48.787624432612347, 0.0 ], [ 9.195519659377556, 48.787625524143323, 0.0 ], [ 9.195518770615861, 48.787624205788774, 0.0 ], [ 9.195512882443161, 48.787625939002233, 0.0 ], [ 9.195508258576043, 48.787619080146797, 0.0 ], [ 9.19551414676171, 48.787617346933544, 0.0 ], [ 9.195512596356838, 48.7876150471334, 0.0 ], [ 9.195516304581476, 48.787613955602652, 0.0 ], [ 9.195495418509202, 48.787582973998504, 0.0 ], [ 9.195491710286385, 48.787584065528591, 0.0 ], [ 9.195490343228277, 48.787582037678746, 0.0 ], [ 9.195484455045918, 48.787583770890805, 0.0 ], [ 9.195479807780798, 48.787576877300417, 0.0 ], [ 9.195485695962548, 48.787575144097595, 0.0 ], [ 9.195484818768568, 48.787573842889557, 0.0 ], [ 9.195488526990781, 48.78757275135969, 0.0 ], [ 9.195466359375432, 48.787539868709224, 0.0 ], [ 9.195462651155163, 48.787540960238388, 0.0 ], [ 9.195461527983767, 48.787539294150783, 0.0 ], [ 9.195455639805402, 48.787541027361357, 0.0 ], [ 9.195451717480507, 48.787535209105442, 0.0 ], [ 9.195457605644721, 48.787533475895074, 0.0 ], [ 9.195455971203595, 48.787531051422732, 0.0 ], [ 9.195459679423289, 48.787529959893803, 0.0 ], [ 9.19545351657464, 48.787520818130382, 0.0 ], [ 9.195449808355482, 48.787521909659127, 0.0 ], [ 9.195448870828779, 48.787520518953251, 0.0 ], [ 9.195442942443711, 48.787522264002462, 0.0 ], [ 9.195438575496597, 48.787515786218187, 0.0 ], [ 9.195444503881063, 48.787514041169231, 0.0 ], [ 9.195443553899047, 48.787512631996144, 0.0 ], [ 9.195503154303657, 48.787495088358391, 0.0 ], [ 9.195499943208418, 48.787490325130975, 0.0 ], [ 9.195510291865009, 48.787487278959262, 0.0 ], [ 9.19550343008609, 48.787477100432191, 0.0 ], [ 9.195517815010113, 48.787472866160847, 0.0 ], [ 9.19552467679136, 48.787483044687079, 0.0 ], [ 9.195636724881947, 48.787450062691732, 0.0 ], [ 9.195629863096196, 48.78743988417213, 0.0 ], [ 9.195642802237844, 48.787436075459155, 0.0 ], [ 9.195649664039255, 48.78744625396898, 0.0 ], [ 9.195661186876078, 48.787442862145426, 0.0 ], [ 9.195664407017322, 48.787447638769628, 0.0 ], [ 9.195721857725726, 48.787430727759173, 0.0 ], [ 9.195723483210973, 48.78743313892533, 0.0 ], [ 9.195731019107361, 48.787430920684713, 0.0 ], [ 9.1957343552433, 48.787435869367563, 0.0 ], [ 9.195726819346319, 48.787438087608429, 0.0 ], [ 9.195727923457262, 48.787439725381944, 0.0 ], [ 9.195726541774549, 48.787440132090133, 0.0 ], [ 9.195732948890955, 48.787449636130994, 0.0 ], [ 9.19573433057384, 48.787449229413731, 0.0 ], [ 9.195735698664693, 48.787451258778667, 0.0 ], [ 9.195743234549639, 48.787449040537268, 0.0 ], [ 9.195747154478694, 48.78745485518148, 0.0 ], [ 9.195739618593054, 48.787457073423141, 0.0 ], [ 9.195740928060243, 48.787459015823579, 0.0 ], [ 9.195739546377107, 48.787459422531924, 0.0 ], [ 9.195760686905333, 48.787490781402262, 0.0 ], [ 9.195762068589158, 48.787490374693668, 0.0 ], [ 9.195763527157521, 48.7874925382594, 0.0 ], [ 9.195771063047367, 48.787490320007215, 0.0 ], [ 9.195775191473048, 48.787496443912147, 0.0 ], [ 9.195767655582431, 48.787498662155599, 0.0 ], [ 9.195768933666027, 48.787500558001632, 0.0 ], [ 9.19576755196837, 48.787500964710333, 0.0 ], [ 9.195788312397802, 48.787531759689791, 0.0 ], [ 9.195789694082524, 48.787531352980857, 0.0 ], [ 9.195790975014814, 48.787533253048196, 0.0 ], [ 9.195798510909535, 48.78753103479422, 0.0 ], [ 9.195804042108772, 48.78753923949354, 0.0 ], [ 9.195796506213036, 48.78754145773889, 0.0 ], [ 9.195797612929228, 48.787543099383001, 0.0 ], [ 9.195796231244248, 48.787543506092014, 0.0 ], [ 9.195817436462782, 48.787574960817039, 0.0 ], [ 9.195818818148455, 48.787574554107763, 0.0 ], [ 9.195820194130228, 48.787576595166293, 0.0 ], [ 9.195827730043783, 48.787574376919366, 0.0 ], [ 9.195832441291433, 48.787581365328336, 0.0 ], [ 9.195824905390689, 48.787583583584528, 0.0 ], [ 9.195826021169966, 48.787585238665514, 0.0 ], [ 9.19582463948406, 48.787585645374875, 0.0 ], [ 9.195845948874188, 48.787617254558995, 0.0 ], [ 9.195847330560788, 48.787616847849378, 0.0 ], [ 9.195848689024592, 48.787618862913448, 0.0 ], [ 9.195856108803541, 48.787616678844358, 0.0 ], [ 9.195858903177072, 48.787620823861914, 0.0 ], [ 9.195863177507386, 48.78761956568178, 0.0 ], [ 9.195862021607372, 48.787617851076995, 0.0 ], [ 9.19587565931387, 48.787613836708381, 0.0 ], [ 9.19587725694422, 48.787616206536796, 0.0 ], [ 9.195888393161855, 48.787612928508203, 0.0 ], [ 9.195892646567131, 48.787619237762669, 0.0 ], [ 9.195887759881089, 48.787620676194436, 0.0 ], [ 9.195910997463056, 48.787655145444617, 0.0 ], [ 9.195916731085152, 48.787653457705346, 0.0 ], [ 9.195920451455471, 48.787658976276603, 0.0 ], [ 9.195914717832872, 48.787660664016045, 0.0 ], [ 9.195908782582986, 48.787662411106126, 0.0 ], [ 9.195909968434359, 48.787664170126725, 0.0 ], [ 9.195893399602495, 48.78766904729445, 0.0 ], [ 9.195892213737972, 48.787667288273703, 0.0 ], [ 9.195825685534114, 48.787686871339318, 0.0 ], [ 9.195827978911124, 48.78769027319013, 0.0 ], [ 9.195815643485144, 48.787693904215111, 0.0 ], [ 9.195866220445529, 48.787768927065095, 0.0 ], [ 9.195869587497349, 48.787776778400016, 0.0 ], [ 9.195870920571409, 48.787784891203493, 0.0 ], [ 9.195870182129569, 48.787793037097387, 0.0 ], [ 9.195867392956989, 48.787800986749929, 0.0 ], [ 9.195862631588769, 48.787808516360293, 0.0 ], [ 9.195860993065132, 48.787810228883764, 0.0 ], [ 9.195875067374688, 48.787816108558836, 0.0 ], [ 9.19586867090629, 48.787822775795121, 0.0 ], [ 9.195854295264922, 48.787816691812701, 0.0 ], [ 9.195847780141731, 48.787821485366429, 0.0 ], [ 9.195838108158362, 48.787826559661809, 0.0 ], [ 9.195827288397933, 48.787830493985659, 0.0 ], [ 9.195815625442911, 48.787833177582307, 0.0 ], [ 9.195803447651503, 48.787834534905819, 0.0 ], [ 9.195794975680233, 48.787834529995273, 0.0 ], [ 9.195793229956793, 48.787845295081198, 0.0 ], [ 9.195782492535127, 48.78784453482308, 0.0 ], [ 9.195784240613285, 48.787833755264593, 0.0 ], [ 9.195778923670611, 48.78783315629444, 0.0 ], [ 9.195767267897187, 48.787830459165825, 0.0 ], [ 9.195756458627276, 48.787826512294735, 0.0 ], [ 9.195746800177032, 48.78782142679534, 0.0 ], [ 9.195738564461992, 48.787815345822814, 0.0 ], [ 9.195731983306111, 48.787808440575773, 0.0 ], [ 9.195730339932144, 48.787806002894825, 0.0 ], [ 9.195717699113439, 48.787809723785486, 0.0 ], [ 9.195713326959373, 48.787803238368305, 0.0 ], [ 9.195725967776783, 48.787799517478135, 0.0 ], [ 9.195680766511177, 48.787732468324521, 0.0 ], [ 9.195600384269538, 48.78775612921617, 0.0 ], [ 9.195601961798005, 48.787758469236827, 0.0 ], [ 9.195583474920552, 48.787763910921399, 0.0 ], [ 9.195581897392778, 48.787761570900493, 0.0 ], [ 9.1955723873022, 48.787764370234662, 0.0 ], [ 9.195568501492321, 48.787758606189861, 0.0 ], [ 9.195576772780983, 48.787756171505201, 0.0 ], [ 9.195552641675238, 48.787720376513313, 0.0 ], [ 9.195543879038746, 48.787722955827519, 0.0 ], [ 9.195539283628671, 48.787716139198253, 0.0 ], [ 9.195551924926505, 48.787712418182394, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cf98", "Latitude": 48.78755, "Longitude": 9.19597, "X_coordina": 3514472.55, "Y_coordina": 5405582.27, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2523, "PrimaryUsa": "industry", "PrimaryU00": 18.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 23.3, "Total_wall": 50.6, "Total_wa00": 0.0, "Total_outw": 167.9, "Total_shar": 0.0, "Total_roof": 23.3, "Gross_volu": 81.6, "Is_Gross_v": "true", "Heated_vol": 58.3, "Ridge_mean": 3.5, "Eaves_mean": 3.5, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.44, "Heated_are": 18.6, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 42.9, "Total_Year": 1412.0, "January_He": 235.0, "February_H": 142.0, "March_Heat": 62.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 14.0, "November_H": 110.0, "December_H": 229.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195886698107362, 48.787545744565513, 0.0 ], [ 9.195930822483561, 48.787532756171878, 0.0 ], [ 9.195967178289203, 48.787586684189158, 0.0 ], [ 9.195923053875223, 48.787599672596649, 0.0 ], [ 9.195886698107362, 48.787545744565513, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cf99", "Latitude": 48.78776, "Longitude": 9.1957, "X_coordina": 3514452.83, "Y_coordina": 5405605.82, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3041, "PrimaryUsa": "event location", "PrimaryU00": 96.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 52.7, "Total_wall": 84.6, "Total_wa00": 0.0, "Total_outw": 146.2, "Total_shar": 159.7, "Total_roof": 58.5, "Gross_volu": 328.4, "Is_Gross_v": "false", "Heated_vol": 302.7, "Ridge_mean": 7.0, "Eaves_mean": 5.35, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.611, "Heated_are": 96.9, "Mean_Uvalu": 1.17, "Specific_d": "non calculated", "Specific_s": 149.1, "Total_Year": 14445.0, "January_He": 2956.0, "February_H": 2333.0, "March_Heat": 1827.0, "April_Heat": 829.0, "May_Heatin": 144.0, "June_Heati": 3, "July_Heati": 0, "August_Hea": 0, "September_": 275.0, "October_He": 1114.0, "November_H": 2109.0, "December_H": 2855.0, "PV_potenti": 2.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195723552526264, 48.787795934825155, 0.0 ], [ 9.19563867581776, 48.787820918677646, 0.0 ], [ 9.19559746741654, 48.787759792175351, 0.0 ], [ 9.195601961798005, 48.787758469236827, 0.0 ], [ 9.195600384269538, 48.78775612921617, 0.0 ], [ 9.195680766511177, 48.787732468324521, 0.0 ], [ 9.195723552526264, 48.787795934825155, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cf9b", "Latitude": 48.78771, "Longitude": 9.19594, "X_coordina": 3514469.92, "Y_coordina": 5405600.19, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3041, "PrimaryUsa": "event location", "PrimaryU00": 127.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 79.1, "Total_wall": 124.1, "Total_wa00": 0.0, "Total_outw": 263.8, "Total_shar": 175.1, "Total_roof": 79.1, "Gross_volu": 459.9, "Is_Gross_v": "false", "Heated_vol": 398.4, "Ridge_mean": 5.8, "Eaves_mean": 5.78, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.656, "Heated_are": 127.5, "Mean_Uvalu": 0.43, "Specific_d": "non calculated", "Specific_s": 66.4, "Total_Year": 8465.0, "January_He": 1944.0, "February_H": 1393.0, "March_Heat": 942.0, "April_Heat": 278.0, "May_Heatin": 25.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 76.0, "October_He": 587.0, "November_H": 1309.0, "December_H": 1910.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195948532016629, 48.787736734893464, 0.0 ], [ 9.195952023714772, 48.78774191423804, 0.0 ], [ 9.195949059348093, 48.787742786820829, 0.0 ], [ 9.195955713938087, 48.787752657792836, 0.0 ], [ 9.195958678291619, 48.787751785209906, 0.0 ], [ 9.195967927857822, 48.78776550539888, 0.0 ], [ 9.195955059694187, 48.787769293245994, 0.0 ], [ 9.195953371510534, 48.787766789100971, 0.0 ], [ 9.195901248677607, 48.787782131840878, 0.0 ], [ 9.195902936859195, 48.787784635986654, 0.0 ], [ 9.195891052640663, 48.787788134190166, 0.0 ], [ 9.195885651912675, 48.78778012309489, 0.0 ], [ 9.195888071482228, 48.787779410875125, 0.0 ], [ 9.195878755002081, 48.787765591400984, 0.0 ], [ 9.195876072310222, 48.787766381069737, 0.0 ], [ 9.195874263664681, 48.787763698243317, 0.0 ], [ 9.195864610916185, 48.787766539595815, 0.0 ], [ 9.195815643485144, 48.787693904215111, 0.0 ], [ 9.195827978911124, 48.78769027319013, 0.0 ], [ 9.195825685534114, 48.787686871339318, 0.0 ], [ 9.195892213737972, 48.787667288273703, 0.0 ], [ 9.195893399602495, 48.78766904729445, 0.0 ], [ 9.195901326927242, 48.787666713823157, 0.0 ], [ 9.19590320233959, 48.787669495703433, 0.0 ], [ 9.195900466205014, 48.787670301101414, 0.0 ], [ 9.195903899022646, 48.787675393132872, 0.0 ], [ 9.19590663515744, 48.787674587734806, 0.0 ], [ 9.195911012143288, 48.787681080303507, 0.0 ], [ 9.195908268273731, 48.787681887980916, 0.0 ], [ 9.195923886042904, 48.787705054395239, 0.0 ], [ 9.195926629913473, 48.787704246717468, 0.0 ], [ 9.195930927720681, 48.787710621808941, 0.0 ], [ 9.195927844130019, 48.787711529484426, 0.0 ], [ 9.195945448438327, 48.787737642578392, 0.0 ], [ 9.195948532016629, 48.787736734893464, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cf4f", "Latitude": 48.79126, "Longitude": 9.19935, "X_coordina": 3514719.43, "Y_coordina": 5405996.46, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 834.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 141.6, "Total_wall": 490.4, "Total_wa00": 0.0, "Total_outw": 662.5, "Total_shar": 528.9, "Total_roof": 199.7, "Gross_volu": 2748.8, "Is_Gross_v": "false", "Heated_vol": 2607.2, "Ridge_mean": 22.8, "Eaves_mean": 15.18, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 13, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.313, "Heated_are": 834.3, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 32.3, "Total_Year": 40122.0, "January_He": 6659.0, "February_H": 4689.0, "March_Heat": 2944.0, "April_Heat": 599.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 54.0, "October_He": 1324.0, "November_H": 4125.0, "December_H": 6498.0, "PV_potenti": 7.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199377554057609, 48.79125858117655, 0.0 ], [ 9.199416295793684, 48.791281354690533, 0.0 ], [ 9.199366131408555, 48.791319371326836, 0.0 ], [ 9.199315885076345, 48.791357334128726, 0.0 ], [ 9.199276979833696, 48.791334515902449, 0.0 ], [ 9.199232399859827, 48.791308380307463, 0.0 ], [ 9.199226972041236, 48.791312436260341, 0.0 ], [ 9.199186457559989, 48.791288766513112, 0.0 ], [ 9.199191885379307, 48.791284710562117, 0.0 ], [ 9.199195704608258, 48.791286862122334, 0.0 ], [ 9.199242383461591, 48.791251891008628, 0.0 ], [ 9.199292725438731, 48.791214035980893, 0.0 ], [ 9.199316051947598, 48.79122766399761, 0.0 ], [ 9.199319987326961, 48.791224779630603, 0.0 ], [ 9.199338170370037, 48.791211169691877, 0.0 ], [ 9.199363952313718, 48.791226232226222, 0.0 ], [ 9.199353911151791, 48.791233803192611, 0.0 ], [ 9.199385695580112, 48.791252452274982, 0.0 ], [ 9.199377554057609, 48.79125858117655, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cf50", "Latitude": 48.79119, "Longitude": 9.19946, "X_coordina": 3514727.79, "Y_coordina": 5405988.48, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 33.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 42.0, "Total_wall": 63.4, "Total_wa00": 0.0, "Total_outw": 180.0, "Total_shar": 8.3, "Total_roof": 42.0, "Gross_volu": 140.0, "Is_Gross_v": "false", "Heated_vol": 105.1, "Ridge_mean": 3.3, "Eaves_mean": 3.33, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 1.203, "Heated_are": 33.6, "Mean_Uvalu": 0.33, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199363952313718, 48.791226232226222, 0.0 ], [ 9.199354130262821, 48.791220404195599, 0.0 ], [ 9.199421164135911, 48.791170470450339, 0.0 ], [ 9.199475593185261, 48.79120238898544, 0.0 ], [ 9.1994525246365, 48.791219514428469, 0.0 ], [ 9.199455389419223, 48.791221218015167, 0.0 ], [ 9.19940966056258, 48.791255468181426, 0.0 ], [ 9.199362188412689, 48.791227584134091, 0.0 ], [ 9.199363952313718, 48.791226232226222, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cd84", "Latitude": 48.79237, "Longitude": 9.21246, "X_coordina": 3515682.9, "Y_coordina": 5406121.68, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 650.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 253.7, "Total_wall": 504.9, "Total_wa00": 0.0, "Total_outw": 822.6, "Total_shar": 46.8, "Total_roof": 255.0, "Gross_volu": 1657.3, "Is_Gross_v": "false", "Heated_vol": 1657.3, "Ridge_mean": 6.9, "Eaves_mean": 6.94, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.612, "Heated_are": 650.1, "Mean_Uvalu": 0.44, "Specific_d": "14,6", "Specific_s": 53.8, "Total_Year": 44495.0, "January_He": 8107.0, "February_H": 5942.0, "March_Heat": 4057.0, "April_Heat": 1281.0, "May_Heatin": 120.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 262.0, "October_He": 2089.0, "November_H": 5262.0, "December_H": 7873.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212497347692878, 48.79230485045165, 0.0 ], [ 9.212479202962696, 48.792359017934423, 0.0 ], [ 9.212482335511275, 48.792359551696251, 0.0 ], [ 9.212424558974741, 48.792536358141959, 0.0 ], [ 9.212319018738928, 48.792521535530234, 0.0 ], [ 9.212375713291612, 48.792346259833458, 0.0 ], [ 9.212379525572675, 48.792346612497354, 0.0 ], [ 9.212397514191093, 48.792287679367597, 0.0 ], [ 9.212394382786506, 48.79228741537213, 0.0 ], [ 9.212411189373015, 48.792238645785943, 0.0 ], [ 9.212518225745482, 48.792253375629393, 0.0 ], [ 9.212501965550716, 48.792302593840844, 0.0 ], [ 9.212498288611247, 48.792302061084051, 0.0 ], [ 9.212497347692878, 48.79230485045165, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cd85", "Latitude": 48.79176, "Longitude": 9.2121, "X_coordina": 3515656.66, "Y_coordina": 5406054.24, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3211, "PrimaryUsa": "sport location", "PrimaryU00": 1858.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 515.9, "Total_wall": 1008.7, "Total_wa00": 0.0, "Total_outw": 1516.5, "Total_shar": 25.4, "Total_roof": 515.9, "Gross_volu": 5140.4, "Is_Gross_v": "false", "Heated_vol": 5140.4, "Ridge_mean": 10.0, "Eaves_mean": 9.96, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.397, "Heated_are": 1858.0, "Mean_Uvalu": 0.44, "Specific_d": "124,1", "Specific_s": 110.8, "Total_Year": 436562.0, "January_He": 45121.0, "February_H": 34896.0, "March_Heat": 26409.0, "April_Heat": 11662.0, "May_Heatin": 2001.0, "June_Heati": 41, "July_Heati": 0, "August_Hea": 1, "September_": 2549.0, "October_He": 12115.0, "November_H": 28377.0, "December_H": 42773.0, "PV_potenti": 24.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211836553962167, 48.791683436855124, 0.0 ], [ 9.211841864769339, 48.791684146474779, 0.0 ], [ 9.211841191855804, 48.7916859461847, 0.0 ], [ 9.212189132897443, 48.791735932607438, 0.0 ], [ 9.212189670081333, 48.791734223069206, 0.0 ], [ 9.212323538444583, 48.791754119221658, 0.0 ], [ 9.2123010993118, 48.79182268237534, 0.0 ], [ 9.212288467391668, 48.791860923192218, 0.0 ], [ 9.212282151614108, 48.791880088561506, 0.0 ], [ 9.212147605477981, 48.791860912998764, 0.0 ], [ 9.212148412584749, 48.791858663421905, 0.0 ], [ 9.211800468842421, 48.791808227264148, 0.0 ], [ 9.211799933158424, 48.791810296492201, 0.0 ], [ 9.211794349765599, 48.791809497448327, 0.0 ], [ 9.211836553962167, 48.791683436855124, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cd87", "Latitude": 48.79232, "Longitude": 9.21392, "X_coordina": 3515789.99, "Y_coordina": 5406116.34, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 28.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 34.2, "Total_wall": 62.9, "Total_wa00": 0.0, "Total_outw": 196.8, "Total_shar": 0.0, "Total_roof": 34.2, "Gross_volu": 107.9, "Is_Gross_v": "false", "Heated_vol": 90.1, "Ridge_mean": 3.1, "Eaves_mean": 3.12, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 1.333, "Heated_are": 28.8, "Mean_Uvalu": 0.37, "Specific_d": "non calculated", "Specific_s": 104.2, "Total_Year": 3003.0, "January_He": 661.0, "February_H": 484.0, "March_Heat": 348.0, "April_Heat": 130.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 37.0, "October_He": 217.0, "November_H": 455.0, "December_H": 653.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213901352577627, 48.792369154381831, 0.0 ], [ 9.213821366719708, 48.792346732096476, 0.0 ], [ 9.213847326465968, 48.792306398124147, 0.0 ], [ 9.213849760190053, 48.792302616813927, 0.0 ], [ 9.21389799717431, 48.792316195617197, 0.0 ], [ 9.213895698405121, 48.792319706906973, 0.0 ], [ 9.213930442157176, 48.792328724653984, 0.0 ], [ 9.213903946098217, 48.792370948036513, 0.0 ], [ 9.213900812005056, 48.792370054621827, 0.0 ], [ 9.213901352577627, 48.792369154381831, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cd88", "Latitude": 48.79241, "Longitude": 9.21289, "X_coordina": 3515714.5, "Y_coordina": 5406126.19, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 1074.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 393.7, "Total_wall": 775.1, "Total_wa00": 0.0, "Total_outw": 1285.5, "Total_shar": 224.6, "Total_roof": 393.7, "Gross_volu": 2637.6, "Is_Gross_v": "false", "Heated_vol": 2637.6, "Ridge_mean": 6.7, "Eaves_mean": 6.71, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.592, "Heated_are": 1074.6, "Mean_Uvalu": 0.44, "Specific_d": "24,8", "Specific_s": 43.2, "Total_Year": 73088.0, "January_He": 10591.0, "February_H": 7653.0, "March_Heat": 5367.0, "April_Heat": 1849.0, "May_Heatin": 225.0, "June_Heati": 10, "July_Heati": 2, "August_Hea": 3, "September_": 427.0, "October_He": 2950.0, "November_H": 6921.0, "December_H": 10397.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212813839266163, 48.792351206142506, 0.0 ], [ 9.212825393149309, 48.79231557504778, 0.0 ], [ 9.212968385341647, 48.792336262900086, 0.0 ], [ 9.21295427916675, 48.792379812004889, 0.0 ], [ 9.213218461800134, 48.792511331018019, 0.0 ], [ 9.213174119668448, 48.792549720556799, 0.0 ], [ 9.212938307537401, 48.792432806534144, 0.0 ], [ 9.212479202962696, 48.792359017934423, 0.0 ], [ 9.212497347692878, 48.79230485045165, 0.0 ], [ 9.212813839266163, 48.792351206142506, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cd89", "Latitude": 48.79213, "Longitude": 9.213, "X_coordina": 3515722.43, "Y_coordina": 5406095.92, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 1710.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 483.5, "Total_wall": 1076.2, "Total_wa00": 0.0, "Total_outw": 1618.0, "Total_shar": 119.8, "Total_roof": 483.5, "Gross_volu": 5828.8, "Is_Gross_v": "false", "Heated_vol": 5345.4, "Ridge_mean": 12.1, "Eaves_mean": 12.05, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.367, "Heated_are": 1710.5, "Mean_Uvalu": 0.39, "Specific_d": "24,8", "Specific_s": 42.5, "Total_Year": 115104.0, "January_He": 15992.0, "February_H": 12027.0, "March_Heat": 8780.0, "April_Heat": 3241.0, "May_Heatin": 379.0, "June_Heati": 18, "July_Heati": 3, "August_Hea": 6, "September_": 822.0, "October_He": 4989.0, "November_H": 10813.0, "December_H": 15548.0, "PV_potenti": 22.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212814090120945, 48.792313977311053, 0.0 ], [ 9.212838404102847, 48.792238306634232, 0.0 ], [ 9.212841944562493, 48.792238749708815, 0.0 ], [ 9.212860346221333, 48.792181074672605, 0.0 ], [ 9.212857214060259, 48.792180630843916, 0.0 ], [ 9.212927781743346, 48.791971607872306, 0.0 ], [ 9.212934181757934, 48.791972405351295, 0.0 ], [ 9.21293378069447, 48.791974114641249, 0.0 ], [ 9.213089983721051, 48.791997205853541, 0.0 ], [ 9.213090791549432, 48.791995136116, 0.0 ], [ 9.213097056995007, 48.791996293529344, 0.0 ], [ 9.213072310855747, 48.792066209953255, 0.0 ], [ 9.213069995668201, 48.792065854542386, 0.0 ], [ 9.212979537438265, 48.792334353880626, 0.0 ], [ 9.212982533511331, 48.792334797957665, 0.0 ], [ 9.212981458804087, 48.792338127118207, 0.0 ], [ 9.212968385341647, 48.792336262900086, 0.0 ], [ 9.212825393149309, 48.79231557504778, 0.0 ], [ 9.212814090120945, 48.792313977311053, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cd8a", "Latitude": 48.79266, "Longitude": 9.21332, "X_coordina": 3515745.67, "Y_coordina": 5406154.58, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 6251.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1242.8, "Total_wall": 2276.9, "Total_wa00": 0.0, "Total_outw": 3218.4, "Total_shar": 59.7, "Total_roof": 1242.8, "Gross_volu": 20485.9, "Is_Gross_v": "false", "Heated_vol": 19534.6, "Ridge_mean": 16.5, "Eaves_mean": 16.49, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.238, "Heated_are": 6251.1, "Mean_Uvalu": 0.34, "Specific_d": "24,8", "Specific_s": 32.4, "Total_Year": 357656.99999999994, "January_He": 44441.0, "February_H": 33945.0, "March_Heat": 25279.0, "April_Heat": 9664.0, "May_Heatin": 1038.0, "June_Heati": 34, "July_Heati": 4, "August_Hea": 9, "September_": 2098.0, "October_He": 13429.0, "November_H": 29583.0, "December_H": 42855.0, "PV_potenti": 59.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213217629964799, 48.792507735614485, 0.0 ], [ 9.213288150328106, 48.792448345380947, 0.0 ], [ 9.213350616321092, 48.792479523083095, 0.0 ], [ 9.213347362144276, 48.792482406666693, 0.0 ], [ 9.213546354217117, 48.792581853032843, 0.0 ], [ 9.21354960838892, 48.792578969443696, 0.0 ], [ 9.213611255818998, 48.792609608980243, 0.0 ], [ 9.213541424505014, 48.792670976451113, 0.0 ], [ 9.213538287728429, 48.792669453566447, 0.0 ], [ 9.213259619162246, 48.792909706228521, 0.0 ], [ 9.213263984277132, 48.79291203615827, 0.0 ], [ 9.213260051090836, 48.792915280690941, 0.0 ], [ 9.213167169907242, 48.792868962158948, 0.0 ], [ 9.213170018485615, 48.792866708796524, 0.0 ], [ 9.213029398183151, 48.792795839447372, 0.0 ], [ 9.213026143586861, 48.792798633098926, 0.0 ], [ 9.212999271387364, 48.792784384953372, 0.0 ], [ 9.21293693752709, 48.792752307582226, 0.0 ], [ 9.212940869960498, 48.792748883214706, 0.0 ], [ 9.212943052503549, 48.792750048185702, 0.0 ], [ 9.213174119668448, 48.792549720556799, 0.0 ], [ 9.213218461800134, 48.792511331018019, 0.0 ], [ 9.213220631384564, 48.792509438605691, 0.0 ], [ 9.213217629964799, 48.792507735614485, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003cd8d", "Latitude": 48.792, "Longitude": 9.21212, "X_coordina": 3515658.18, "Y_coordina": 5406081.28, "LOD": "LOD2", "Year_of_co": 2004, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 2485.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 687.7, "Total_wall": 1788.3, "Total_wa00": 0.0, "Total_outw": 2060.0, "Total_shar": 0.0, "Total_roof": 753.9, "Gross_volu": 8454.5, "Is_Gross_v": "false", "Heated_vol": 7766.8, "Ridge_mean": 11.9, "Eaves_mean": 11.93, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.401, "Heated_are": 2485.4, "Mean_Uvalu": 0.4, "Specific_d": "24,8", "Specific_s": 44.4, "Total_Year": 172109.0, "January_He": 24033.0, "February_H": 17984.0, "March_Heat": 13448.0, "April_Heat": 5588.0, "May_Heatin": 860.0, "June_Heati": 45, "July_Heati": 7, "August_Hea": 14, "September_": 1425.0, "October_He": 7461.0, "November_H": 16050.0, "December_H": 23458.0, "PV_potenti": 34.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211863446867172, 48.791961431159791, 0.0 ], [ 9.211883323938281, 48.791963013214989, 0.0 ], [ 9.211884655381743, 48.791955996724532, 0.0 ], [ 9.211986627355152, 48.791964082033786, 0.0 ], [ 9.21198543126574, 48.791970918429065, 0.0 ], [ 9.212004900051337, 48.791972501214865, 0.0 ], [ 9.212006095380461, 48.791965484973566, 0.0 ], [ 9.212108067392228, 48.791973570175308, 0.0 ], [ 9.212106871698108, 48.791980496494709, 0.0 ], [ 9.212126612686554, 48.791982078758593, 0.0 ], [ 9.212127808757062, 48.791975242361872, 0.0 ], [ 9.212229916526235, 48.791983237282132, 0.0 ], [ 9.212228584750934, 48.791990163853562, 0.0 ], [ 9.212306867418981, 48.791996296229414, 0.0 ], [ 9.212497414243485, 48.792011204824178, 0.0 ], [ 9.212480584403069, 48.79210277810035, 0.0 ], [ 9.212333397420226, 48.792090864927168, 0.0 ], [ 9.212333133571725, 48.792092843732803, 0.0 ], [ 9.211628046057097, 48.792038029274913, 0.0 ], [ 9.211627248756637, 48.792042616843574, 0.0 ], [ 9.211619897203017, 48.79204209081135, 0.0 ], [ 9.211639051677833, 48.791936575230032, 0.0 ], [ 9.211646267118667, 48.791937101511202, 0.0 ], [ 9.211645072118269, 48.791944207671769, 0.0 ], [ 9.211761474918552, 48.79195334574149, 0.0 ], [ 9.211762806378749, 48.791946329252404, 0.0 ], [ 9.211864778313362, 48.791954414669561, 0.0 ], [ 9.211863446867172, 48.791961431159791, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c7ed", "Latitude": 48.79086, "Longitude": 9.2142, "X_coordina": 3515811.18, "Y_coordina": 5405953.98, "LOD": "LOD2", "Year_of_co": 2009, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 603.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 190.2, "Total_wall": 380.7, "Total_wa00": 0.0, "Total_outw": 654.8, "Total_shar": 195.9, "Total_roof": 223.9, "Gross_volu": 2074.8, "Is_Gross_v": "false", "Heated_vol": 1884.5, "Ridge_mean": 12.6, "Eaves_mean": 9.27, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 8, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.405, "Heated_are": 603.1, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 34.7, "Total_Year": 30452.0, "January_He": 5249.0, "February_H": 3630.0, "March_Heat": 2190.0, "April_Heat": 403.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 1005.0, "November_H": 3248.0, "December_H": 5129.0, "PV_potenti": 11.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214217599484128, 48.790791036736323, 0.0 ], [ 9.214241424237105, 48.79095276500373, 0.0 ], [ 9.214171625159304, 48.790957031318818, 0.0 ], [ 9.214097335702299, 48.790961485786973, 0.0 ], [ 9.214079370060237, 48.79083328810799, 0.0 ], [ 9.214074876942821, 48.790800834034265, 0.0 ], [ 9.214078005968432, 48.790800558446833, 0.0 ], [ 9.214106309413149, 48.790799516669701, 0.0 ], [ 9.214217599484128, 48.790791036736323, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c7ee", "Latitude": 48.79079, "Longitude": 9.21407, "X_coordina": 3515801.77, "Y_coordina": 5405946.85, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 68.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 37.3, "Total_wall": 87.8, "Total_wa00": 0.0, "Total_outw": 183.6, "Total_shar": 33.6, "Total_roof": 37.3, "Gross_volu": 155.5, "Is_Gross_v": "false", "Heated_vol": 155.5, "Ridge_mean": 4.2, "Eaves_mean": 4.17, "Storey_num": 2, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.045, "Heated_are": 68.4, "Mean_Uvalu": 0.38, "Specific_d": "73,0", "Specific_s": 58.0, "Total_Year": 8957.0, "January_He": 921.0, "February_H": 668.0, "March_Heat": 463.0, "April_Heat": 153.0, "May_Heatin": 17.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 30.0, "October_He": 228.0, "November_H": 586.0, "December_H": 899.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21398753489952, 48.790840203058082, 0.0 ], [ 9.213979979320156, 48.790791658343494, 0.0 ], [ 9.214075488560884, 48.790784646646038, 0.0 ], [ 9.214078005968432, 48.790800558446833, 0.0 ], [ 9.214074876942821, 48.790800834034265, 0.0 ], [ 9.214079370060237, 48.79083328810799, 0.0 ], [ 9.21398753489952, 48.790840203058082, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c398", "Latitude": 48.79138, "Longitude": 9.20291, "X_coordina": 3514981.39, "Y_coordina": 5406010.34, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 758.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 126.2, "Total_wall": 614.9, "Total_wa00": 0.0, "Total_outw": 845.0, "Total_shar": 296.0, "Total_roof": 220.7, "Gross_volu": 2496.5, "Is_Gross_v": "false", "Heated_vol": 2370.4, "Ridge_mean": 22.1, "Eaves_mean": 16.93, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 12, "Number_o00": 24, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.4, "Heated_are": 758.5, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 36.9, "Total_Year": 39992.0, "January_He": 6951.0, "February_H": 4873.0, "March_Heat": 2969.0, "April_Heat": 579.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 58.0, "October_He": 1381.0, "November_H": 4330.0, "December_H": 6818.0, "PV_potenti": 8.58 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202871120458312, 48.791350406406472, 0.0 ], [ 9.202890765425275, 48.791362061865705, 0.0 ], [ 9.202985715017983, 48.791418096794253, 0.0 ], [ 9.202972960054799, 48.791427561254999, 0.0 ], [ 9.202930895317605, 48.791458659032962, 0.0 ], [ 9.202911355457475, 48.791473081241222, 0.0 ], [ 9.202818453448565, 48.791418571347023, 0.0 ], [ 9.202798506370003, 48.791433264024263, 0.0 ], [ 9.202777497897371, 48.791420981485182, 0.0 ], [ 9.202748577376044, 48.791404126768626, 0.0 ], [ 9.202843290526896, 48.791333999410256, 0.0 ], [ 9.202871120458312, 48.791350406406472, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c399", "Latitude": 48.79144, "Longitude": 9.20303, "X_coordina": 3514990.26, "Y_coordina": 5406016.23, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 65.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 35.8, "Total_wall": 78.3, "Total_wa00": 0.0, "Total_outw": 171.8, "Total_shar": 58.1, "Total_roof": 35.8, "Gross_volu": 156.5, "Is_Gross_v": "false", "Heated_vol": 156.5, "Ridge_mean": 4.4, "Eaves_mean": 4.37, "Storey_num": 2, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.958, "Heated_are": 65.3, "Mean_Uvalu": 0.45, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202972960054799, 48.791427561254999, 0.0 ], [ 9.202985715017983, 48.791418096794253, 0.0 ], [ 9.203045194853104, 48.791453152065564, 0.0 ], [ 9.202991875488356, 48.791494521000097, 0.0 ], [ 9.202930895317605, 48.791458659032962, 0.0 ], [ 9.202972960054799, 48.791427561254999, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c2e9", "Latitude": 48.78973, "Longitude": 9.19359, "X_coordina": 3514296.59, "Y_coordina": 5405825.22, "LOD": "LOD2", "Year_of_co": 1998, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 7115.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1284.6, "Total_wall": 3305.2, "Total_wa00": 0.0, "Total_outw": 4650.3, "Total_shar": 352.5, "Total_roof": 1739.0, "Gross_volu": 23518.9, "Is_Gross_v": "false", "Heated_vol": 22234.4, "Ridge_mean": 22.2, "Eaves_mean": 13.5, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.278, "Heated_are": 7115.0, "Mean_Uvalu": 0.44, "Specific_d": "14,6", "Specific_s": 52.2, "Total_Year": 475408.0, "January_He": 82800.0, "February_H": 62477.0, "March_Heat": 45545.0, "April_Heat": 17001.0, "May_Heatin": 2028.0, "June_Heati": 68, "July_Heati": 7, "August_Hea": 15, "September_": 3791.0, "October_He": 23601.0, "November_H": 54281.0, "December_H": 79844.0, "PV_potenti": 89.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193334027647676, 48.789732091592256, 0.0 ], [ 9.193653254777008, 48.789932264733444, 0.0 ], [ 9.193587022996324, 48.789979496076896, 0.0 ], [ 9.193522690854319, 48.790025285411431, 0.0 ], [ 9.193531692676226, 48.790030395929683, 0.0 ], [ 9.193528979124551, 48.790032558657174, 0.0 ], [ 9.193199389177023, 48.789827276915098, 0.0 ], [ 9.193215809011337, 48.789814929828175, 0.0 ], [ 9.193255432532167, 48.789784828844688, 0.0 ], [ 9.193160246043078, 48.789734361547232, 0.0 ], [ 9.193170829444961, 48.789726070819917, 0.0 ], [ 9.193488874591798, 48.789477437553685, 0.0 ], [ 9.193556247470612, 48.789514732561614, 0.0 ], [ 9.193584069225155, 48.789530062735487, 0.0 ], [ 9.193921207850824, 48.789716626560804, 0.0 ], [ 9.193859340204666, 48.789766098803959, 0.0 ], [ 9.193796794054849, 48.789816111697149, 0.0 ], [ 9.193669415225237, 48.789746455336733, 0.0 ], [ 9.193524852546471, 48.789667295809828, 0.0 ], [ 9.193460345359044, 48.789632064213698, 0.0 ], [ 9.193334027647676, 48.789732091592256, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c2ea", "Latitude": 48.78975, "Longitude": 9.19323, "X_coordina": 3514270.39, "Y_coordina": 5405826.77, "LOD": "LOD2", "Year_of_co": 1998, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 75.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.1, "Total_wall": 87.5, "Total_wa00": 0.0, "Total_outw": 187.3, "Total_shar": 159.5, "Total_roof": 46.1, "Gross_volu": 272.9, "Is_Gross_v": "false", "Heated_vol": 236.2, "Ridge_mean": 5.9, "Eaves_mean": 5.89, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.709, "Heated_are": 75.6, "Mean_Uvalu": 0.63, "Specific_d": "non calculated", "Specific_s": 102.8, "Total_Year": 7767.0, "January_He": 1668.0, "February_H": 1259.0, "March_Heat": 925.0, "April_Heat": 356.0, "May_Heatin": 51.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 101.0, "October_He": 582.0, "November_H": 1178.0, "December_H": 1646.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193114258244613, 48.789744456171235, 0.0 ], [ 9.193120538498444, 48.789735480252943, 0.0 ], [ 9.193131235991768, 48.789728547184751, 0.0 ], [ 9.193144952533927, 48.789724585523992, 0.0 ], [ 9.193159893579383, 48.789724083867412, 0.0 ], [ 9.193170829444961, 48.789726070819917, 0.0 ], [ 9.193160246043078, 48.789734361547232, 0.0 ], [ 9.193255432532167, 48.789784828844688, 0.0 ], [ 9.193215809011337, 48.789814929828175, 0.0 ], [ 9.193163538385724, 48.789776620131022, 0.0 ], [ 9.193149348556833, 48.78977783092472, 0.0 ], [ 9.193135498933808, 48.789775489162679, 0.0 ], [ 9.193126638155551, 48.789771646299897, 0.0 ], [ 9.193117517056685, 48.789763802271445, 0.0 ], [ 9.193113207365831, 48.789754322555865, 0.0 ], [ 9.193114258244613, 48.789744456171235, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c2ec", "Latitude": 48.78945, "Longitude": 9.19389, "X_coordina": 3514318.75, "Y_coordina": 5405793.39, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 3866.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 731.9, "Total_wall": 1827.9, "Total_wa00": 0.0, "Total_outw": 2512.6, "Total_shar": 370.0, "Total_roof": 967.3, "Gross_volu": 12520.6, "Is_Gross_v": "false", "Heated_vol": 12082.5, "Ridge_mean": 21.0, "Eaves_mean": 12.39, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.288, "Heated_are": 3866.4, "Mean_Uvalu": 0.49, "Specific_d": "14,6", "Specific_s": 53.9, "Total_Year": 264824.0, "January_He": 46807.0, "February_H": 35079.0, "March_Heat": 25257.0, "April_Heat": 9156.0, "May_Heatin": 1062.0, "June_Heati": 36, "July_Heati": 4, "August_Hea": 8, "September_": 2040.0, "October_He": 13129.0, "November_H": 30544.0, "December_H": 45216.0, "PV_potenti": 50.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193846861140283, 48.789317580724081, 0.0 ], [ 9.194193966932501, 48.789512669724722, 0.0 ], [ 9.19412829896099, 48.789564666384564, 0.0 ], [ 9.194082575605892, 48.789600892757392, 0.0 ], [ 9.194058964360325, 48.789618737429208, 0.0 ], [ 9.193916990636881, 48.789540473265774, 0.0 ], [ 9.193782927948771, 48.789466691795631, 0.0 ], [ 9.193714191634255, 48.789428769748071, 0.0 ], [ 9.193584069225155, 48.789530062735487, 0.0 ], [ 9.193556247470612, 48.789514732561614, 0.0 ], [ 9.193488874591798, 48.789477437553685, 0.0 ], [ 9.193680995361099, 48.789325323480909, 0.0 ], [ 9.193690764124122, 48.78931757361724, 0.0 ], [ 9.193783496218769, 48.789366875603179, 0.0 ], [ 9.193830307610179, 48.789330467668862, 0.0 ], [ 9.193846861140283, 48.789317580724081, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c2ed", "Latitude": 48.7893, "Longitude": 9.19379, "X_coordina": 3514312.14, "Y_coordina": 5405777.09, "LOD": "LOD2", "Year_of_co": 1998, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 98.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 60.1, "Total_wall": 91.2, "Total_wa00": 0.0, "Total_outw": 169.9, "Total_shar": 144.2, "Total_roof": 60.1, "Gross_volu": 321.5, "Is_Gross_v": "false", "Heated_vol": 307.0, "Ridge_mean": 5.3, "Eaves_mean": 5.34, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.671, "Heated_are": 98.2, "Mean_Uvalu": 0.6, "Specific_d": "14,6", "Specific_s": 73.6, "Total_Year": 8669.0, "January_He": 1748.0, "February_H": 1195.0, "March_Heat": 777.0, "April_Heat": 254.0, "May_Heatin": 32.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 393.0, "November_H": 1052.0, "December_H": 1732.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193677307069493, 48.78932173273882, 0.0 ], [ 9.193672651954648, 48.789314456753523, 0.0 ], [ 9.193671125195143, 48.789306725888466, 0.0 ], [ 9.193672592429358, 48.789298989987934, 0.0 ], [ 9.193677191823008, 48.789291788361247, 0.0 ], [ 9.193680580936107, 48.789288365562783, 0.0 ], [ 9.193684380397022, 48.78928548161587, 0.0 ], [ 9.193693752301961, 48.789280699899443, 0.0 ], [ 9.193704628123735, 48.789277714125227, 0.0 ], [ 9.19371632810285, 48.789276705283612, 0.0 ], [ 9.193728035697355, 48.789277674748014, 0.0 ], [ 9.193738934365323, 48.789280623892253, 0.0 ], [ 9.193744660208472, 48.789283222044247, 0.0 ], [ 9.193830307610179, 48.789330467668862, 0.0 ], [ 9.193783496218769, 48.789366875603179, 0.0 ], [ 9.193690764124122, 48.78931757361724, 0.0 ], [ 9.193680995361099, 48.789325323480909, 0.0 ], [ 9.193677307069493, 48.78932173273882, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003c2ee", "Latitude": 48.78949, "Longitude": 9.19388, "X_coordina": 3514318.68, "Y_coordina": 5405798.15, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 25.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 27.8, "Total_wall": 41.2, "Total_wa00": 0.0, "Total_outw": 44.6, "Total_shar": 33.3, "Total_roof": 27.8, "Gross_volu": 66.7, "Is_Gross_v": "false", "Heated_vol": 66.7, "Ridge_mean": 2.4, "Eaves_mean": 2.41, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.452, "Heated_are": 25.1, "Mean_Uvalu": 0.43, "Specific_d": "32,8", "Specific_s": 37.0, "Total_Year": 1749.0, "January_He": 271.0, "February_H": 169.0, "March_Heat": 72.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 133.0, "December_H": 259.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193916990636881, 48.789540473265774, 0.0 ], [ 9.193898131468883, 48.78955543234602, 0.0 ], [ 9.193764068803075, 48.789481659846444, 0.0 ], [ 9.193782941557879, 48.789466691772731, 0.0 ], [ 9.193916990636881, 48.789540473265774, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003bfed", "Latitude": 48.79214, "Longitude": 9.19889, "X_coordina": 3514686.04, "Y_coordina": 5406094.23, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 677.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 276.9, "Total_wall": 148.8, "Total_wa00": 0.0, "Total_outw": 256.4, "Total_shar": 648.4, "Total_roof": 276.9, "Gross_volu": 2264.8, "Is_Gross_v": "false", "Heated_vol": 2117.0, "Ridge_mean": 8.2, "Eaves_mean": 8.18, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.315, "Heated_are": 677.5, "Mean_Uvalu": 0.46, "Specific_d": "32,9", "Specific_s": 6.9, "Total_Year": 26902.0, "January_He": 1582.0, "February_H": 917.0, "March_Heat": 269.0, "April_Heat": 11.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 14.0, "November_H": 445.0, "December_H": 1403.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198880408518374, 48.792054635254907, 0.0 ], [ 9.199013274898835, 48.792132009774541, 0.0 ], [ 9.1988186749867, 48.792275324431102, 0.0 ], [ 9.198813081798164, 48.79227200691475, 0.0 ], [ 9.198687714968473, 48.79219821617064, 0.0 ], [ 9.198734937990537, 48.792162884634855, 0.0 ], [ 9.198858425318832, 48.792071039313207, 0.0 ], [ 9.198880408518374, 48.792054635254907, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003bf86", "Latitude": 48.78806, "Longitude": 9.19945, "X_coordina": 3514728.36, "Y_coordina": 5405639.88, "LOD": "LOD2", "Year_of_co": 1940, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 687.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 184.6, "Total_wall": 651.0, "Total_wa00": 0.0, "Total_outw": 1015.4, "Total_shar": 0.0, "Total_roof": 236.6, "Gross_volu": 2620.6, "Is_Gross_v": "false", "Heated_vol": 2436.0, "Ridge_mean": 16.5, "Eaves_mean": 11.76, "Storey_num": 5, "Average_St": 3.1, "Number_of_": 11, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.43, "Heated_are": 687.4, "Mean_Uvalu": 0.6, "Specific_d": "15,8", "Specific_s": 55.1, "Total_Year": 48729.0, "January_He": 9079.0, "February_H": 6438.0, "March_Heat": 4194.0, "April_Heat": 1038.0, "May_Heatin": 54.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 157.0, "October_He": 2133.0, "November_H": 5834.0, "December_H": 8915.0, "PV_potenti": 11.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199465757822075, 48.788000045563209, 0.0 ], [ 9.199479148241437, 48.788047951678543, 0.0 ], [ 9.199485269312765, 48.7880472216859, 0.0 ], [ 9.19950997862691, 48.788135393987453, 0.0 ], [ 9.199425236079207, 48.788145612223786, 0.0 ], [ 9.199378580175123, 48.788151268278924, 0.0 ], [ 9.199377901519098, 48.788151719072211, 0.0 ], [ 9.199360773023031, 48.78815642475687, 0.0 ], [ 9.199343607480232, 48.788151778442824, 0.0 ], [ 9.199336486054492, 48.788140460389556, 0.0 ], [ 9.199341618196435, 48.788130559903365, 0.0 ], [ 9.199310553371721, 48.788018209101708, 0.0 ], [ 9.199404138537689, 48.788007256248648, 0.0 ], [ 9.199465757822075, 48.788000045563209, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003bf87", "Latitude": 48.78811, "Longitude": 9.19959, "X_coordina": 3514738.55, "Y_coordina": 5405646.1, "LOD": "LOD2", "Year_of_co": 1940, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 19.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 23.7, "Total_wall": 36.3, "Total_wa00": 0.0, "Total_outw": 110.8, "Total_shar": 54.2, "Total_roof": 23.7, "Gross_volu": 63.4, "Is_Gross_v": "false", "Heated_vol": 60.8, "Ridge_mean": 2.7, "Eaves_mean": 2.71, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.345, "Heated_are": 19.4, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19955869387462, 48.788099969579818, 0.0 ], [ 9.19958179761332, 48.788160717932335, 0.0 ], [ 9.199533651168082, 48.788167995259343, 0.0 ], [ 9.19951666535367, 48.788105707595498, 0.0 ], [ 9.19955869387462, 48.788099969579818, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003bd42", "Latitude": 48.78793, "Longitude": 9.19807, "X_coordina": 3514626.56, "Y_coordina": 5405625.7, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 381.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 118.4, "Total_wall": 324.0, "Total_wa00": 0.0, "Total_outw": 546.1, "Total_shar": 49.1, "Total_roof": 259.7, "Gross_volu": 1199.2, "Is_Gross_v": "false", "Heated_vol": 1192.4, "Ridge_mean": 13.6, "Eaves_mean": 5.11, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.587, "Heated_are": 381.6, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 50.6, "Total_Year": 25343.0, "January_He": 4661.0, "February_H": 3328.0, "March_Heat": 2095.0, "April_Heat": 467.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1064.0, "November_H": 3024.0, "December_H": 4576.0, "PV_potenti": 11.25 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197937143138761, 48.787981101512308, 0.0 ], [ 9.197950991119397, 48.787972714808284, 0.0 ], [ 9.198002924094178, 48.787890165528133, 0.0 ], [ 9.198026298464342, 48.787881852358133, 0.0 ], [ 9.198035835151451, 48.787884533667857, 0.0 ], [ 9.198063858948689, 48.78789229983731, 0.0 ], [ 9.198091964831361, 48.787900173767113, 0.0 ], [ 9.19810163761222, 48.78790285483727, 0.0 ], [ 9.198110268779386, 48.787917497545408, 0.0 ], [ 9.19808105700554, 48.787964038328965, 0.0 ], [ 9.1980714546429, 48.787979251944215, 0.0 ], [ 9.198043594114431, 48.788023362454787, 0.0 ], [ 9.197990557557095, 48.788008751136303, 0.0 ], [ 9.197969618156993, 48.788002987060217, 0.0 ], [ 9.197948389282157, 48.788003203401225, 0.0 ], [ 9.197936369057492, 48.787991893681941, 0.0 ], [ 9.197937143138761, 48.787981101512308, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003bbd6", "Latitude": 48.79454, "Longitude": 9.20888, "X_coordina": 3515419.16, "Y_coordina": 5406362.99, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1730.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 270.8, "Total_wall": 1488.3, "Total_wa00": 0.0, "Total_outw": 1890.6, "Total_shar": 0.0, "Total_roof": 270.8, "Gross_volu": 5616.2, "Is_Gross_v": "false", "Heated_vol": 5408.6, "Ridge_mean": 21.7, "Eaves_mean": 21.73, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 28, "Number_o00": 43, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.371, "Heated_are": 1730.7, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 32.7, "Total_Year": 84060.0, "January_He": 14140.0, "February_H": 9888.0, "March_Heat": 6046.0, "April_Heat": 1169.0, "May_Heatin": 29.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 101.0, "October_He": 2697.0, "November_H": 8744.0, "December_H": 13830.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208966905258945, 48.794496273812783, 0.0 ], [ 9.208929770925698, 48.794600023052347, 0.0 ], [ 9.208889049085192, 48.794593712351713, 0.0 ], [ 9.20886429396973, 48.794663178238245, 0.0 ], [ 9.208740902659407, 48.794644068398696, 0.0 ], [ 9.208745207654022, 48.794631920915172, 0.0 ], [ 9.208737172243048, 48.794630676550383, 0.0 ], [ 9.208709252465049, 48.794626320899198, 0.0 ], [ 9.208724858968861, 48.794582499841511, 0.0 ], [ 9.208751903765643, 48.794507184802164, 0.0 ], [ 9.208766972866805, 48.794465073259623, 0.0 ], [ 9.208966905258945, 48.794496273812783, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003b8a7", "Latitude": 48.79002, "Longitude": 9.19793, "X_coordina": 3514615.79, "Y_coordina": 5405857.32, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 493.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 171.5, "Total_wall": 441.8, "Total_wa00": 0.0, "Total_outw": 744.0, "Total_shar": 0.0, "Total_roof": 195.1, "Gross_volu": 1656.0, "Is_Gross_v": "false", "Heated_vol": 1542.8, "Ridge_mean": 11.3, "Eaves_mean": 7.97, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 6, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.508, "Heated_are": 493.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 46.7, "Total_Year": 30896.0, "January_He": 5677.0, "February_H": 3984.0, "March_Heat": 2440.0, "April_Heat": 504.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1215.0, "November_H": 3602.0, "December_H": 5568.0, "PV_potenti": 9.16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19788186506632, 48.790120210198587, 0.0 ], [ 9.197821304126974, 48.790085783577318, 0.0 ], [ 9.197760334285816, 48.790051177779013, 0.0 ], [ 9.197890186633771, 48.789952218563222, 0.0 ], [ 9.19795402605795, 48.789989786840323, 0.0 ], [ 9.198011590813596, 48.790023679002665, 0.0 ], [ 9.19788186506632, 48.790120210198587, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003b827", "Latitude": 48.78802, "Longitude": 9.20879, "X_coordina": 3515414.03, "Y_coordina": 5405637.67, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 212.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 60.3, "Total_wall": 135.1, "Total_wa00": 0.0, "Total_outw": 227.0, "Total_shar": 267.4, "Total_roof": 92.3, "Gross_volu": 682.2, "Is_Gross_v": "false", "Heated_vol": 664.4, "Ridge_mean": 13.5, "Eaves_mean": 8.81, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 3, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.428, "Heated_are": 212.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.2, "Total_Year": 12133.0, "January_He": 2121.0, "February_H": 1497.0, "March_Heat": 978.0, "April_Heat": 252.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 30.0, "October_He": 462.0, "November_H": 1329.0, "December_H": 2083.0, "PV_potenti": 3.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208666611875922, 48.788052532762528, 0.0 ], [ 9.208696581227796, 48.788026940135531, 0.0 ], [ 9.208732246808708, 48.787996661145748, 0.0 ], [ 9.20873701992201, 48.787999080433025, 0.0 ], [ 9.208815915755881, 48.788023396636447, 0.0 ], [ 9.208790884026778, 48.788058242479423, 0.0 ], [ 9.208770318149178, 48.788087055335652, 0.0 ], [ 9.208677659166989, 48.788058357782525, 0.0 ], [ 9.208666611875922, 48.788052532762528, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003b629", "Latitude": 48.79546, "Longitude": 9.20855, "X_coordina": 3515394.76, "Y_coordina": 5406464.75, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1004.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 227.5, "Total_wall": 786.7, "Total_wa00": 0.0, "Total_outw": 1059.1, "Total_shar": 202.3, "Total_roof": 227.5, "Gross_volu": 3138.0, "Is_Gross_v": "false", "Heated_vol": 3138.0, "Ridge_mean": 15.5, "Eaves_mean": 15.47, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 13, "Number_o00": 27, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.396, "Heated_are": 1004.1, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 36.5, "Total_Year": 52573.0, "January_He": 8740.0, "February_H": 6278.0, "March_Heat": 4247.0, "April_Heat": 1200.0, "May_Heatin": 55.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 136.0, "October_He": 1995.0, "November_H": 5497.0, "December_H": 8519.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208603354658612, 48.795445266702608, 0.0 ], [ 9.208644485846831, 48.795451666685238, 0.0 ], [ 9.208647444032385, 48.795442938741857, 0.0 ], [ 9.208660927956297, 48.79544516239968, 0.0 ], [ 9.208624602604592, 48.795547381357643, 0.0 ], [ 9.208464571760029, 48.795522402641076, 0.0 ], [ 9.208358611392386, 48.795505958546364, 0.0 ], [ 9.208392114762196, 48.795412377438481, 0.0 ], [ 9.208445095030584, 48.795420644444363, 0.0 ], [ 9.208448189355909, 48.795411916259646, 0.0 ], [ 9.208606448957992, 48.795436538513727, 0.0 ], [ 9.208603354658612, 48.795445266702608, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003b61c", "Latitude": 48.79183, "Longitude": 9.20333, "X_coordina": 3515011.82, "Y_coordina": 5406060.56, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 669.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 170.6, "Total_wall": 504.8, "Total_wa00": 0.0, "Total_outw": 791.0, "Total_shar": 286.9, "Total_roof": 200.7, "Gross_volu": 2469.1, "Is_Gross_v": "false", "Heated_vol": 2298.5, "Ridge_mean": 16.1, "Eaves_mean": 12.81, "Storey_num": 5, "Average_St": 3.0, "Number_of_": 11, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.371, "Heated_are": 669.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.0, "Total_Year": 38731.0, "January_He": 6830.0, "February_H": 4886.0, "March_Heat": 3073.0, "April_Heat": 623.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 76.0, "October_He": 1532.0, "November_H": 4438.0, "December_H": 6648.0, "PV_potenti": 10.15 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203233480140261, 48.791771958798087, 0.0 ], [ 9.203299517801646, 48.79177939581713, 0.0 ], [ 9.203299789996095, 48.791779395336611, 0.0 ], [ 9.203296573070347, 48.791791630625397, 0.0 ], [ 9.203372278034578, 48.791800129619176, 0.0 ], [ 9.203336764931711, 48.79193696612532, 0.0 ], [ 9.203279849232105, 48.79193041226187, 0.0 ], [ 9.203263101232052, 48.791928463505414, 0.0 ], [ 9.203196790458986, 48.791920847100393, 0.0 ], [ 9.20319379522228, 48.791920582614658, 0.0 ], [ 9.203233480140261, 48.791771958798087, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003acc8", "Latitude": 48.79281, "Longitude": 9.20252, "X_coordina": 3514952.01, "Y_coordina": 5406168.7, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1131, "PrimaryUsa": "residential", "PrimaryU00": 153.8, "SecondaryU": "industry", "Secondar00": 63.6, "BuildingTy": "EFH", "Footprint_": 79.5, "Total_wall": 226.5, "Total_wa00": 0.0, "Total_outw": 407.7, "Total_shar": 65.3, "Total_roof": 79.5, "Gross_volu": 537.0, "Is_Gross_v": "false", "Heated_vol": 537.0, "Ridge_mean": 6.7, "Eaves_mean": 6.74, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.718, "Heated_are": 217.4, "Mean_Uvalu": 0.49, "Specific_d": "20,8", "Specific_s": 38.0, "Total_Year": 12783.0, "January_He": 2114.0, "February_H": 1475.0, "March_Heat": 864.0, "April_Heat": 161.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 13.0, "October_He": 332.0, "November_H": 1242.0, "December_H": 2053.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202539643687228, 48.79281818327437, 0.0 ], [ 9.202440585144616, 48.792891555252808, 0.0 ], [ 9.20243649273146, 48.792889224433779, 0.0 ], [ 9.202381650959618, 48.792857128184217, 0.0 ], [ 9.20245641745851, 48.792801154217642, 0.0 ], [ 9.202505131875725, 48.792764919282654, 0.0 ], [ 9.202564340046793, 48.792799795424628, 0.0 ], [ 9.202539643687228, 48.79281818327437, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003abdd", "Latitude": 48.78915, "Longitude": 9.19867, "X_coordina": 3514670.6, "Y_coordina": 5405761.44, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 990.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 207.4, "Total_wall": 826.3, "Total_wa00": 0.0, "Total_outw": 1207.3, "Total_shar": 0.0, "Total_roof": 228.5, "Gross_volu": 3300.1, "Is_Gross_v": "false", "Heated_vol": 3096.6, "Ridge_mean": 17.5, "Eaves_mean": 14.33, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 16, "Number_o00": 26, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.399, "Heated_are": 990.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 38.2, "Total_Year": 53553.0, "January_He": 9427.0, "February_H": 6554.0, "March_Heat": 4012.0, "April_Heat": 777.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 82.0, "October_He": 1851.0, "November_H": 5878.0, "December_H": 9253.0, "PV_potenti": 11.11 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198728453143794, 48.789107920756365, 0.0 ], [ 9.198732911989183, 48.789168701442975, 0.0 ], [ 9.19873737049044, 48.789229392205741, 0.0 ], [ 9.198530816165913, 48.78923757185099, 0.0 ], [ 9.198525267417212, 48.789176433341716, 0.0 ], [ 9.198519718682219, 48.789115294831497, 0.0 ], [ 9.198728453143794, 48.789107920756365, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003abd6", "Latitude": 48.78896, "Longitude": 9.19864, "X_coordina": 3514668.05, "Y_coordina": 5405740.64, "LOD": "LOD2", "Year_of_co": 1995, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 299.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 128.0, "Total_wall": 340.3, "Total_wa00": 0.0, "Total_outw": 579.6, "Total_shar": 87.9, "Total_roof": 148.2, "Gross_volu": 1064.9, "Is_Gross_v": "false", "Heated_vol": 937.0, "Ridge_mean": 12.6, "Eaves_mean": 5.52, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.616, "Heated_are": 299.8, "Mean_Uvalu": 0.57, "Specific_d": "73,0", "Specific_s": 71.9, "Total_Year": 43460.0, "January_He": 5074.0, "February_H": 3622.0, "March_Heat": 2416.0, "April_Heat": 739.0, "May_Heatin": 73.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 160.0, "October_He": 1255.0, "November_H": 3259.0, "December_H": 4969.0, "PV_potenti": 3.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198604963729993, 48.788956072919937, 0.0 ], [ 9.198670550059093, 48.788953711695889, 0.0 ], [ 9.198677557129258, 48.789039486762704, 0.0 ], [ 9.198619590656641, 48.789041565077369, 0.0 ], [ 9.198509099163676, 48.789045172697378, 0.0 ], [ 9.198513976639816, 48.789005148268203, 0.0 ], [ 9.198519646879577, 48.788959097587728, 0.0 ], [ 9.198536519866895, 48.788958528956918, 0.0 ], [ 9.198539668946745, 48.78892884872505, 0.0 ], [ 9.198602397362912, 48.788926492467041, 0.0 ], [ 9.198604963729993, 48.788956072919937, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003abd8", "Latitude": 48.78904, "Longitude": 9.1986, "X_coordina": 3514665.61, "Y_coordina": 5405748.76, "LOD": "LOD2", "Year_of_co": 1995, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 23.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 28.8, "Total_wall": 44.5, "Total_wa00": 0.0, "Total_outw": 155.8, "Total_shar": 60.2, "Total_roof": 28.8, "Gross_volu": 90.9, "Is_Gross_v": "false", "Heated_vol": 72.8, "Ridge_mean": 3.2, "Eaves_mean": 3.18, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.244, "Heated_are": 23.3, "Mean_Uvalu": 0.6, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19850778189382, 48.789056235576147, 0.0 ], [ 9.198509099163676, 48.789045172697378, 0.0 ], [ 9.198576319401544, 48.789042988557696, 0.0 ], [ 9.198619590656641, 48.789041565077369, 0.0 ], [ 9.198622024853965, 48.789072134917333, 0.0 ], [ 9.198498333986816, 48.789076124987204, 0.0 ], [ 9.198506858704997, 48.789063700829878, 0.0 ], [ 9.19850778189382, 48.789056235576147, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003aa53", "Latitude": 48.78936, "Longitude": 9.20057, "X_coordina": 3514809.69, "Y_coordina": 5405785.49, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1404.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 224.1, "Total_wall": 1046.9, "Total_wa00": 0.0, "Total_outw": 1320.3, "Total_shar": 22.1, "Total_roof": 338.5, "Gross_volu": 4526.0, "Is_Gross_v": "false", "Heated_vol": 4389.9, "Ridge_mean": 24.0, "Eaves_mean": 15.55, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 26, "Number_o00": 44, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.364, "Heated_are": 1404.8, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 32.0, "Total_Year": 67217.0, "January_He": 11168.0, "February_H": 7833.0, "March_Heat": 4918.0, "April_Heat": 989.0, "May_Heatin": 24.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 82.0, "October_He": 2124.0, "November_H": 6877.0, "December_H": 10949.0, "PV_potenti": 13.16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200657234762238, 48.789372008957642, 0.0 ], [ 9.200658801677875, 48.789389541336682, 0.0 ], [ 9.200620547881968, 48.789417250513068, 0.0 ], [ 9.200570461033156, 48.789453541017259, 0.0 ], [ 9.200514121463399, 48.789420007690872, 0.0 ], [ 9.200391243220837, 48.789423189064387, 0.0 ], [ 9.200385419322229, 48.789327700295409, 0.0 ], [ 9.200652390760618, 48.789317613596872, 0.0 ], [ 9.200653247819268, 48.789327773474668, 0.0 ], [ 9.200655385268528, 48.789351869285369, 0.0 ], [ 9.200657234762238, 48.789372008957642, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003aa50", "Latitude": 48.7878, "Longitude": 9.20972, "X_coordina": 3515482.84, "Y_coordina": 5405612.8, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 3905.0, "SecondaryU": "retail", "Secondar00": 811.0, "BuildingTy": "GMH", "Footprint_": 1013.8, "Total_wall": 2100.3, "Total_wa00": 0.0, "Total_outw": 2833.4, "Total_shar": 133.7, "Total_roof": 1013.8, "Gross_volu": 15751.2, "Is_Gross_v": "false", "Heated_vol": 14737.5, "Ridge_mean": 19.4, "Eaves_mean": 10.35, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 76, "Number_o00": 118, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.27, "Heated_are": 4716.0, "Mean_Uvalu": 0.48, "Specific_d": "25,7", "Specific_s": 32.5, "Total_Year": 274385.0, "January_He": 37430.0, "February_H": 26719.0, "March_Heat": 17226.0, "April_Heat": 4033.0, "May_Heatin": 129.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 387.0, "October_He": 7621.0, "November_H": 23301.0, "December_H": 36472.0, "PV_potenti": 46.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209381387956844, 48.787866172496202, 0.0 ], [ 9.209308263454213, 48.787855244815589, 0.0 ], [ 9.209336614917206, 48.787767967328257, 0.0 ], [ 9.20934015241383, 48.787767781050448, 0.0 ], [ 9.209353592349149, 48.787727201045485, 0.0 ], [ 9.209369183455127, 48.787680322471104, 0.0 ], [ 9.209441490451603, 48.787691071752853, 0.0 ], [ 9.210045409938276, 48.787780435031209, 0.0 ], [ 9.210003731957094, 48.787902447529376, 0.0 ], [ 9.209962707019152, 48.787952699737588, 0.0 ], [ 9.209941872605794, 48.787949590393247, 0.0 ], [ 9.209919267941267, 48.787946214501041, 0.0 ], [ 9.209638208341056, 48.787904372440686, 0.0 ], [ 9.209556641112307, 48.787892201355291, 0.0 ], [ 9.209381387956844, 48.787866172496202, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003aa51", "Latitude": 48.78804, "Longitude": 9.20992, "X_coordina": 3515497.32, "Y_coordina": 5405639.86, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 109.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 132.1, "Total_wall": 141.1, "Total_wa00": 0.0, "Total_outw": 426.5, "Total_shar": 0.0, "Total_roof": 132.1, "Gross_volu": 378.3, "Is_Gross_v": "false", "Heated_vol": 342.7, "Ridge_mean": 2.9, "Eaves_mean": 2.87, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 1.11, "Heated_are": 109.7, "Mean_Uvalu": 0.34, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209746298880372, 48.788011184778966, 0.0 ], [ 9.21002218410359, 48.788052136775221, 0.0 ], [ 9.210003228082456, 48.788107834089807, 0.0 ], [ 9.209727343318722, 48.788067061895013, 0.0 ], [ 9.209746298880372, 48.788011184778966, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003aa12", "Latitude": 48.78919, "Longitude": 9.1958, "X_coordina": 3514459.86, "Y_coordina": 5405765.12, "LOD": "LOD2", "Year_of_co": 1934, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 832.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 127.2, "Total_wall": 719.0, "Total_wa00": 0.0, "Total_outw": 962.7, "Total_shar": 228.4, "Total_roof": 228.0, "Gross_volu": 2706.6, "Is_Gross_v": "false", "Heated_vol": 2601.2, "Ridge_mean": 23.3, "Eaves_mean": 16.78, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 15, "Number_o00": 26, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.409, "Heated_are": 832.4, "Mean_Uvalu": 0.54, "Specific_d": "15,8", "Specific_s": 43.2, "Total_Year": 49167.0, "January_He": 8859.0, "February_H": 6249.0, "March_Heat": 3834.0, "April_Heat": 757.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 91.0, "October_He": 1848.0, "November_H": 5626.0, "December_H": 8692.0, "PV_potenti": 6.05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195686263543443, 48.789174818229725, 0.0 ], [ 9.195720594003646, 48.789148951800833, 0.0 ], [ 9.195739912513416, 48.78914730033928, 0.0 ], [ 9.195755325332819, 48.789156176579944, 0.0 ], [ 9.195756309445814, 48.789164268034639, 0.0 ], [ 9.195769949951735, 48.789172337973369, 0.0 ], [ 9.195786183174045, 48.789182201975173, 0.0 ], [ 9.195798124480566, 48.789173279231534, 0.0 ], [ 9.195795260637706, 48.789171755399011, 0.0 ], [ 9.195781622926622, 48.789164404847646, 0.0 ], [ 9.195783929463486, 48.789162602453324, 0.0 ], [ 9.195797296393417, 48.789170313159396, 0.0 ], [ 9.195818847288015, 48.789182775900393, 0.0 ], [ 9.195849127220637, 48.789200169591957, 0.0 ], [ 9.195873951659388, 48.789214515151507, 0.0 ], [ 9.195796604771671, 48.789272377666194, 0.0 ], [ 9.195762316608681, 48.789274144510152, 0.0 ], [ 9.195647329050798, 48.789206627430829, 0.0 ], [ 9.195689262424418, 48.789176072064549, 0.0 ], [ 9.195686263543443, 48.789174818229725, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a92a", "Latitude": 48.78856, "Longitude": 9.21231, "X_coordina": 3515672.51, "Y_coordina": 5405698.46, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 87.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.2, "Total_wall": 48.2, "Total_wa00": 0.0, "Total_outw": 103.1, "Total_shar": 206.0, "Total_roof": 52.4, "Gross_volu": 313.4, "Is_Gross_v": "false", "Heated_vol": 272.2, "Ridge_mean": 9.2, "Eaves_mean": 5.92, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.484, "Heated_are": 87.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.4, "Total_Year": 5423.0, "January_He": 1014.0, "February_H": 698.0, "March_Heat": 404.0, "April_Heat": 69.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 206.0, "November_H": 649.0, "December_H": 993.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212320552834466, 48.788562645252632, 0.0 ], [ 9.21231611057196, 48.788606446261362, 0.0 ], [ 9.212259759283413, 48.788604032276723, 0.0 ], [ 9.212201774937448, 48.788601621273678, 0.0 ], [ 9.212205672566057, 48.788557731349279, 0.0 ], [ 9.212263929417832, 48.788560231771747, 0.0 ], [ 9.212320552834466, 48.788562645252632, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a7b4", "Latitude": 48.78839, "Longitude": 9.19549, "X_coordina": 3514437.05, "Y_coordina": 5405675.96, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1030.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 228.4, "Total_wall": 466.1, "Total_wa00": 0.0, "Total_outw": 748.6, "Total_shar": 543.1, "Total_roof": 256.3, "Gross_volu": 3448.8, "Is_Gross_v": "false", "Heated_vol": 3220.4, "Ridge_mean": 16.6, "Eaves_mean": 13.52, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 17, "Number_o00": 26, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.286, "Heated_are": 1030.5, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 28.3, "Total_Year": 45508.0, "January_He": 7234.0, "February_H": 5139.0, "March_Heat": 3220.0, "April_Heat": 592.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 45.0, "October_He": 1421.0, "November_H": 4512.0, "December_H": 7011.0, "PV_potenti": 13.13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195574764525022, 48.788464071306791, 0.0 ], [ 9.195500275801285, 48.788486768628545, 0.0 ], [ 9.195425650921843, 48.788509466133135, 0.0 ], [ 9.195347501111033, 48.788395395695439, 0.0 ], [ 9.195319444592069, 48.788354617948741, 0.0 ], [ 9.19539624565054, 48.788331647048786, 0.0 ], [ 9.195470192285432, 48.788309580179401, 0.0 ], [ 9.195574764525022, 48.788464071306791, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a7b5", "Latitude": 48.78849, "Longitude": 9.19535, "X_coordina": 3514426.72, "Y_coordina": 5405687.01, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 76.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 42.7, "Total_wall": 129.6, "Total_wa00": 0.0, "Total_outw": 299.8, "Total_shar": 0.0, "Total_roof": 42.7, "Gross_volu": 233.6, "Is_Gross_v": "false", "Heated_vol": 204.0, "Ridge_mean": 5.5, "Eaves_mean": 5.49, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 1.001, "Heated_are": 76.8, "Mean_Uvalu": 0.51, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195336708023074, 48.788489743914845, 0.0 ], [ 9.195349711120418, 48.78850896551814, 0.0 ], [ 9.195352021831608, 48.788508242208991, 0.0 ], [ 9.195366940302335, 48.788530068346823, 0.0 ], [ 9.19530264721166, 48.788549960609402, 0.0 ], [ 9.195246888979529, 48.788489716392931, 0.0 ], [ 9.19531866094156, 48.788468282774161, 0.0 ], [ 9.19533385365696, 48.788490647993171, 0.0 ], [ 9.195336708023074, 48.788489743914845, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a7b6", "Latitude": 48.78838, "Longitude": 9.1953, "X_coordina": 3514422.99, "Y_coordina": 5405674.53, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 111.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 60.5, "Total_wall": 111.8, "Total_wa00": 0.0, "Total_outw": 306.3, "Total_shar": 48.3, "Total_roof": 60.5, "Gross_volu": 227.4, "Is_Gross_v": "false", "Heated_vol": 227.4, "Ridge_mean": 3.8, "Eaves_mean": 3.77, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.024, "Heated_are": 111.6, "Mean_Uvalu": 0.45, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195319444592069, 48.788354617948741, 0.0 ], [ 9.195347501111033, 48.788395395695439, 0.0 ], [ 9.195200831164634, 48.788439257383899, 0.0 ], [ 9.195164076257045, 48.788401371901102, 0.0 ], [ 9.195173183701725, 48.78839865875581, 0.0 ], [ 9.195319444592069, 48.788354617948741, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a563", "Latitude": 48.78815, "Longitude": 9.21097, "X_coordina": 3515574.49, "Y_coordina": 5405652.29, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 156.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 57.4, "Total_wall": 155.9, "Total_wa00": 0.0, "Total_outw": 247.9, "Total_shar": 118.1, "Total_roof": 92.4, "Gross_volu": 545.2, "Is_Gross_v": "false", "Heated_vol": 487.8, "Ridge_mean": 12.4, "Eaves_mean": 6.65, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 2, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.598, "Heated_are": 156.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 57.4, "Total_Year": 11439.0, "January_He": 2143.0, "February_H": 1540.0, "March_Heat": 986.0, "April_Heat": 230.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 516.0, "November_H": 1417.0, "December_H": 2090.0, "PV_potenti": 3.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210977889400395, 48.788204519011437, 0.0 ], [ 9.210919071713436, 48.788197972401342, 0.0 ], [ 9.210856713883883, 48.788190982624883, 0.0 ], [ 9.21087335060942, 48.788134120409978, 0.0 ], [ 9.21093557567545, 48.788141919733597, 0.0 ], [ 9.210994124517232, 48.788149276140842, 0.0 ], [ 9.210977889400395, 48.788204519011437, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a3e3", "Latitude": 48.79234, "Longitude": 9.19829, "X_coordina": 3514641.57, "Y_coordina": 5406115.4, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 128.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 45.3, "Total_wall": 49.2, "Total_wa00": 0.0, "Total_outw": 98.8, "Total_shar": 309.9, "Total_roof": 72.0, "Gross_volu": 446.6, "Is_Gross_v": "false", "Heated_vol": 401.3, "Ridge_mean": 12.8, "Eaves_mean": 6.76, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.391, "Heated_are": 128.4, "Mean_Uvalu": 0.43, "Specific_d": "15,8", "Specific_s": 36.2, "Total_Year": 6684.0, "January_He": 1133.0, "February_H": 804.0, "March_Heat": 517.0, "April_Heat": 115.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 12.0, "October_He": 243.0, "November_H": 716.0, "December_H": 1107.0, "PV_potenti": 3.33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198267480905164, 48.792312154268323, 0.0 ], [ 9.198282213582612, 48.792320761566515, 0.0 ], [ 9.198309769317005, 48.792336900362685, 0.0 ], [ 9.198310990307608, 48.792335909100501, 0.0 ], [ 9.198314400573736, 48.792337881546629, 0.0 ], [ 9.198268803901065, 48.792371591484212, 0.0 ], [ 9.198226192842558, 48.792403138098095, 0.0 ], [ 9.198222782221213, 48.792401075726424, 0.0 ], [ 9.198224003569317, 48.792400174388142, 0.0 ], [ 9.198182260604307, 48.792375697094649, 0.0 ], [ 9.198181039256045, 48.792376598432476, 0.0 ], [ 9.198177493247782, 48.792374716139619, 0.0 ], [ 9.19822037580197, 48.792342989229084, 0.0 ], [ 9.198265700992506, 48.792309459625073, 0.0 ], [ 9.198268838349017, 48.792311252695242, 0.0 ], [ 9.198267480905164, 48.792312154268323, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a22d", "Latitude": 48.78989, "Longitude": 9.21296, "X_coordina": 3515720.14, "Y_coordina": 5405846.13, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 569.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 141.7, "Total_wall": 377.1, "Total_wa00": 0.0, "Total_outw": 564.5, "Total_shar": 212.1, "Total_roof": 221.7, "Gross_volu": 1822.9, "Is_Gross_v": "false", "Heated_vol": 1778.6, "Ridge_mean": 15.9, "Eaves_mean": 9.8, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 7, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.412, "Heated_are": 569.2, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 39.2, "Total_Year": 31309.0, "January_He": 5613.0, "February_H": 3855.0, "March_Heat": 2279.0, "April_Heat": 422.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 45.0, "October_He": 1079.0, "November_H": 3469.0, "December_H": 5518.0, "PV_potenti": 10.23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213014494084643, 48.7899501444872, 0.0 ], [ 9.212952915474013, 48.789967074091386, 0.0 ], [ 9.212887666514368, 48.789984999607583, 0.0 ], [ 9.212816553958779, 48.789871467573718, 0.0 ], [ 9.212815457997905, 48.789869761050007, 0.0 ], [ 9.21283924557193, 48.789862972816444, 0.0 ], [ 9.212880563895485, 48.789850217213385, 0.0 ], [ 9.212896873624137, 48.789845151339726, 0.0 ], [ 9.212941186700755, 48.78983257002578, 0.0 ], [ 9.213014494084643, 48.7899501444872, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a0c5", "Latitude": 48.78777, "Longitude": 9.20357, "X_coordina": 3515031.11, "Y_coordina": 5405608.44, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 3202.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 775.7, "Total_wall": 1546.4, "Total_wa00": 0.0, "Total_outw": 2438.8, "Total_shar": 350.5, "Total_roof": 943.8, "Gross_volu": 10616.2, "Is_Gross_v": "false", "Heated_vol": 10007.7, "Ridge_mean": 15.8, "Eaves_mean": 10.8, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.318, "Heated_are": 3202.5, "Mean_Uvalu": 0.47, "Specific_d": "24,8", "Specific_s": 42.6, "Total_Year": 215829.0, "January_He": 31191.0, "February_H": 22767.0, "March_Heat": 15712.0, "April_Heat": 4776.0, "May_Heatin": 402.0, "June_Heati": 17, "July_Heati": 2, "August_Hea": 6, "September_": 1167.0, "October_He": 9003.0, "November_H": 20882.0, "December_H": 30355.0, "PV_potenti": 49.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203709959767204, 48.788073727025221, 0.0 ], [ 9.203613903298573, 48.788079112477632, 0.0 ], [ 9.203537030745784, 48.788083384860798, 0.0 ], [ 9.203533526738154, 48.788058212429519, 0.0 ], [ 9.203524143069956, 48.787992494819072, 0.0 ], [ 9.2035169899063, 48.78793990211971, 0.0 ], [ 9.203513483373486, 48.787914100226004, 0.0 ], [ 9.203384355133457, 48.787582060419005, 0.0 ], [ 9.20337211576156, 48.787584150279095, 0.0 ], [ 9.203359465417259, 48.787551890023018, 0.0 ], [ 9.203348326565246, 48.787523224043042, 0.0 ], [ 9.203437125115, 48.787506880946005, 0.0 ], [ 9.203494647180724, 48.787496348167984, 0.0 ], [ 9.203512870294686, 48.787493258559884, 0.0 ], [ 9.203535697619751, 48.787551848447023, 0.0 ], [ 9.203532569464642, 48.787552303594197, 0.0 ], [ 9.203665552335933, 48.787895037335488, 0.0 ], [ 9.203685016741021, 48.787895992069821, 0.0 ], [ 9.203709959767204, 48.788073727025221, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a0c6", "Latitude": 48.78741, "Longitude": 9.20376, "X_coordina": 3515044.89, "Y_coordina": 5405569.1, "LOD": "LOD2", "Year_of_co": 1971, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 904.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 242.0, "Total_wall": 692.7, "Total_wa00": 0.0, "Total_outw": 1061.5, "Total_shar": 0.0, "Total_roof": 272.9, "Gross_volu": 3069.0, "Is_Gross_v": "false", "Heated_vol": 2827.0, "Ridge_mean": 14.4, "Eaves_mean": 10.93, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.413, "Heated_are": 904.6, "Mean_Uvalu": 0.48, "Specific_d": "24,8", "Specific_s": 46.3, "Total_Year": 64397.0, "January_He": 9811.0, "February_H": 7021.0, "March_Heat": 4645.0, "April_Heat": 1286.0, "May_Heatin": 113.0, "June_Heati": 5, "July_Heati": 1, "August_Hea": 2, "September_": 303.0, "October_He": 2638.0, "November_H": 6457.0, "December_H": 9645.0, "PV_potenti": 15.04 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203589695870662, 48.78737667161316, 0.0 ], [ 9.203668542026717, 48.787355939672132, 0.0 ], [ 9.203749019684116, 48.787334845095806, 0.0 ], [ 9.203844909785811, 48.787490333268444, 0.0 ], [ 9.203760896969241, 48.787512243479348, 0.0 ], [ 9.203679059267913, 48.787533610239798, 0.0 ], [ 9.203639468878931, 48.787469025139302, 0.0 ], [ 9.203642185496491, 48.787467761403967, 0.0 ], [ 9.203610682452597, 48.787417549778148, 0.0 ], [ 9.203585617675879, 48.787377757907045, 0.0 ], [ 9.203589695870662, 48.78737667161316, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a0c7", "Latitude": 48.78748, "Longitude": 9.20328, "X_coordina": 3515009.91, "Y_coordina": 5405575.97, "LOD": "LOD2", "Year_of_co": 1994, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 2444.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 800.4, "Total_wall": 1251.7, "Total_wa00": 0.0, "Total_outw": 2029.8, "Total_shar": 200.2, "Total_roof": 800.4, "Gross_volu": 8437.9, "Is_Gross_v": "false", "Heated_vol": 7637.6, "Ridge_mean": 12.1, "Eaves_mean": 12.09, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.352, "Heated_are": 2444.0, "Mean_Uvalu": 0.33, "Specific_d": "24,8", "Specific_s": 37.0, "Total_Year": 151108.0, "January_He": 19931.0, "February_H": 15048.0, "March_Heat": 11095.0, "April_Heat": 4192.0, "May_Heatin": 502.0, "June_Heati": 20, "July_Heati": 3, "August_Hea": 6, "September_": 945.0, "October_He": 6006.0, "November_H": 13273.0, "December_H": 19378.0, "PV_potenti": 36.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203338359193543, 48.787346631558101, 0.0 ], [ 9.203348983652671, 48.787349040736686, 0.0 ], [ 9.203359337032332, 48.78735172016399, 0.0 ], [ 9.203369691503193, 48.787354669359459, 0.0 ], [ 9.203379774894856, 48.787357888803761, 0.0 ], [ 9.20338972292933, 48.787361288333585, 0.0 ], [ 9.203397764680753, 48.787364421458513, 0.0 ], [ 9.203388416949661, 48.787374869114281, 0.0 ], [ 9.203396187259337, 48.78737818256608, 0.0 ], [ 9.203405322057733, 48.787382392843931, 0.0 ], [ 9.203414185413839, 48.787386783447872, 0.0 ], [ 9.203422777327679, 48.787391354377959, 0.0 ], [ 9.20343109816274, 48.787396195557285, 0.0 ], [ 9.203439011833693, 48.787401307226311, 0.0 ], [ 9.203443378198209, 48.787404177069966, 0.0 ], [ 9.203448700432658, 48.787407854537754, 0.0 ], [ 9.203455252889452, 48.787412878686837, 0.0 ], [ 9.203460167232905, 48.787416646798391, 0.0 ], [ 9.203466995134743, 48.787422479773163, 0.0 ], [ 9.203473551594332, 48.787428493074465, 0.0 ], [ 9.203479428355196, 48.787434687423733, 0.0 ], [ 9.203484897224575, 48.787440972417109, 0.0 ], [ 9.203474977888735, 48.78744467681468, 0.0 ], [ 9.203468048070393, 48.787447296845322, 0.0 ], [ 9.203472698972316, 48.787453223589822, 0.0 ], [ 9.203477215971139, 48.78745969011274, 0.0 ], [ 9.203481325077979, 48.787466247279887, 0.0 ], [ 9.203485162378296, 48.787472894850822, 0.0 ], [ 9.20348845570078, 48.787479633306532, 0.0 ], [ 9.203491341130867, 48.787486462406598, 0.0 ], [ 9.203493682582755, 48.787493382391489, 0.0 ], [ 9.203494647180724, 48.787496348167984, 0.0 ], [ 9.203437125115, 48.787506880946005, 0.0 ], [ 9.203348326565246, 48.787523224043042, 0.0 ], [ 9.203359465417259, 48.787551890023018, 0.0 ], [ 9.203322473692593, 48.787557800379901, 0.0 ], [ 9.203330584134578, 48.78757792896112, 0.0 ], [ 9.2032253244755, 48.787595649881879, 0.0 ], [ 9.203230548755993, 48.787608769517398, 0.0 ], [ 9.203050426419912, 48.787656566952407, 0.0 ], [ 9.203014262525501, 48.787564099260237, 0.0 ], [ 9.203097896891117, 48.787549474078354, 0.0 ], [ 9.203095833105678, 48.787543902450793, 0.0 ], [ 9.203094588012563, 48.787538868921324, 0.0 ], [ 9.203093753717082, 48.787534464133017, 0.0 ], [ 9.203093504046935, 48.78752655129064, 0.0 ], [ 9.202984440948576, 48.787525754423882, 0.0 ], [ 9.202984685556372, 48.787518919794024, 0.0 ], [ 9.202985336607785, 48.787511634829364, 0.0 ], [ 9.202986395916046, 48.787504349145081, 0.0 ], [ 9.202987999929316, 48.787497152424308, 0.0 ], [ 9.202990012561731, 48.787490044906882, 0.0 ], [ 9.202992433450431, 48.787482936669761, 0.0 ], [ 9.202995262957957, 48.787475917635952, 0.0 ], [ 9.202998637169719, 48.787468987565553, 0.0 ], [ 9.203002419999946, 48.787462146698367, 0.0 ], [ 9.203006611448501, 48.787455395034385, 0.0 ], [ 9.203011211877962, 48.787448822496614, 0.0 ], [ 9.203016220925488, 48.787442339161927, 0.0 ], [ 9.20302014854264, 48.787437656206926, 0.0 ], [ 9.203021773950946, 48.787435764944313, 0.0 ], [ 9.203027600596915, 48.787429549938722, 0.0 ], [ 9.203033836586126, 48.787423603982091, 0.0 ], [ 9.203040345107523, 48.787417747468304, 0.0 ], [ 9.203047126886631, 48.787412160243306, 0.0 ], [ 9.203054453368685, 48.787406661981144, 0.0 ], [ 9.203062053108383, 48.787401433007659, 0.0 ], [ 9.203069926105762, 48.787396473322801, 0.0 ], [ 9.203078071635177, 48.787391603080479, 0.0 ], [ 9.203086626507666, 48.787387001886657, 0.0 ], [ 9.203095318552569, 48.787382670221326, 0.0 ], [ 9.203104419940653, 48.78737860760436, 0.0 ], [ 9.20311365813841, 48.787374724592709, 0.0 ], [ 9.203120316157564, 48.787372194986439, 0.0 ], [ 9.20312371320955, 48.787370930063126, 0.0 ], [ 9.203133362200923, 48.787367675790989, 0.0 ], [ 9.203143284087563, 48.78736460088399, 0.0 ], [ 9.203153343147219, 48.787361795505134, 0.0 ], [ 9.20316353974302, 48.78735934957745, 0.0 ], [ 9.203173873149131, 48.787357083254825, 0.0 ], [ 9.203184344091721, 48.787355176383272, 0.0 ], [ 9.203194952207944, 48.787353539039735, 0.0 ], [ 9.203205697497953, 48.787352171224185, 0.0 ], [ 9.203216444239734, 48.787351163099743, 0.0 ], [ 9.203227327792568, 48.787350334580204, 0.0 ], [ 9.20323821316069, 48.787349955674792, 0.0 ], [ 9.203249099254947, 48.787349756614397, 0.0 ], [ 9.203252093130585, 48.787349751330261, 0.0 ], [ 9.203252315911957, 48.787337521317944, 0.0 ], [ 9.203261298263035, 48.787337685311137, 0.0 ], [ 9.203272458704131, 48.787338025306319, 0.0 ], [ 9.203283620598228, 48.78733872499253, 0.0 ], [ 9.203294783945546, 48.787339784369792, 0.0 ], [ 9.203305811934607, 48.787341023832269, 0.0 ], [ 9.203316705292048, 48.78734262322606, 0.0 ], [ 9.203327599740053, 48.787344492387909, 0.0 ], [ 9.203338359193543, 48.787346631558101, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a0c8", "Latitude": 48.78824, "Longitude": 9.20338, "X_coordina": 3515016.81, "Y_coordina": 5405660.75, "LOD": "LOD2", "Year_of_co": 2012, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3210, "PrimaryUsa": "sport location", "PrimaryU00": 2980.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 1088.0, "Total_wall": 936.7, "Total_wa00": 0.0, "Total_outw": 1000.5, "Total_shar": 489.2, "Total_roof": 1229.8, "Gross_volu": 10076.2, "Is_Gross_v": "false", "Heated_vol": 9314.6, "Ridge_mean": 11.5, "Eaves_mean": 11.5, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.329, "Heated_are": 2980.7, "Mean_Uvalu": 0.34, "Specific_d": "124,1", "Specific_s": 117.6, "Total_Year": 720440.0, "January_He": 74497.0, "February_H": 59013.0, "March_Heat": 46136.0, "April_Heat": 21704.0, "May_Heatin": 4153.0, "June_Heati": 96, "July_Heati": 0, "August_Hea": 3, "September_": 5114.0, "October_He": 21604.0, "November_H": 47891.0, "December_H": 70271.0, "PV_potenti": 55.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203298038786635, 48.788482438586193, 0.0 ], [ 9.203082423152308, 48.788099024869048, 0.0 ], [ 9.203387638922413, 48.788024209269658, 0.0 ], [ 9.203603121195732, 48.78840780250404, 0.0 ], [ 9.203598227116712, 48.78840907008798, 0.0 ], [ 9.203298038786635, 48.788482438586193, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003a0c9", "Latitude": 48.78821, "Longitude": 9.20361, "X_coordina": 3515033.68, "Y_coordina": 5405657.72, "LOD": "LOD2", "Year_of_co": 2012, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 1105.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 517.2, "Total_wall": 482.4, "Total_wa00": 0.0, "Total_outw": 745.8, "Total_shar": 636.2, "Total_roof": 559.3, "Gross_volu": 3734.3, "Is_Gross_v": "false", "Heated_vol": 3453.2, "Ridge_mean": 8.2, "Eaves_mean": 8.19, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.427, "Heated_are": 1105.0, "Mean_Uvalu": 0.38, "Specific_d": "24,8", "Specific_s": 45.9, "Total_Year": 78124.0, "January_He": 11136.0, "February_H": 8293.0, "March_Heat": 6102.0, "April_Heat": 2296.0, "May_Heatin": 291.0, "June_Heati": 16, "July_Heati": 2, "August_Hea": 5, "September_": 648.0, "October_He": 3553.0, "November_H": 7506.0, "December_H": 10826.0, "PV_potenti": 24.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203603121195732, 48.78840780250404, 0.0 ], [ 9.203387638922413, 48.788024209269658, 0.0 ], [ 9.203523863986653, 48.787990786762776, 0.0 ], [ 9.203524143069956, 48.787992494819072, 0.0 ], [ 9.203537030745784, 48.788083384860798, 0.0 ], [ 9.20359077356326, 48.788080412302854, 0.0 ], [ 9.203737598152843, 48.788446591531233, 0.0 ], [ 9.203633865085861, 48.788472043555565, 0.0 ], [ 9.203598227116712, 48.78840907008798, 0.0 ], [ 9.203603121195732, 48.78840780250404, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039e8f", "Latitude": 48.79, "Longitude": 9.20792, "X_coordina": 3515349.61, "Y_coordina": 5405857.85, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 727.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 227.5, "Total_wall": 447.7, "Total_wa00": 0.0, "Total_outw": 661.7, "Total_shar": 286.8, "Total_roof": 227.5, "Gross_volu": 2286.8, "Is_Gross_v": "false", "Heated_vol": 2274.6, "Ridge_mean": 10.1, "Eaves_mean": 10.05, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 9, "Number_o00": 15, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.396, "Heated_are": 727.9, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 38.9, "Total_Year": 39870.0, "January_He": 7103.0, "February_H": 4935.0, "March_Heat": 2893.0, "April_Heat": 485.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 1421.0, "November_H": 4514.0, "December_H": 6924.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207914299118674, 48.790123576057994, 0.0 ], [ 9.207785656233819, 48.790115265498443, 0.0 ], [ 9.207785786385942, 48.79011382648558, 0.0 ], [ 9.207817385488573, 48.789922232136291, 0.0 ], [ 9.207959782114742, 48.789932675991615, 0.0 ], [ 9.207929273403838, 48.790124538181779, 0.0 ], [ 9.207914299118674, 48.790123576057994, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039cf7", "Latitude": 48.78909, "Longitude": 9.20019, "X_coordina": 3514782.24, "Y_coordina": 5405755.13, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1274.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 225.3, "Total_wall": 1059.6, "Total_wa00": 0.0, "Total_outw": 1416.2, "Total_shar": 0.0, "Total_roof": 236.4, "Gross_volu": 4113.9, "Is_Gross_v": "false", "Heated_vol": 3982.9, "Ridge_mean": 18.9, "Eaves_mean": 18.92, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 20, "Number_o00": 35, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.378, "Heated_are": 1274.5, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 32.5, "Total_Year": 61624.0, "January_He": 10290.0, "February_H": 7207.0, "March_Heat": 4516.0, "April_Heat": 946.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 81.0, "October_He": 1972.0, "November_H": 6332.0, "December_H": 10066.0, "PV_potenti": 9.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200033128394711, 48.789134887032695, 0.0 ], [ 9.200050408263612, 48.789133957778915, 0.0 ], [ 9.200046199379146, 48.789102222044981, 0.0 ], [ 9.200051716513737, 48.789086475823282, 0.0 ], [ 9.200064501709397, 48.789050394231268, 0.0 ], [ 9.200251465941825, 48.789044224224789, 0.0 ], [ 9.200254324428123, 48.789078570085493, 0.0 ], [ 9.200260323970175, 48.789149869100299, 0.0 ], [ 9.200262463728555, 48.789174594380484, 0.0 ], [ 9.200037808453724, 48.789182448509244, 0.0 ], [ 9.200033128394711, 48.789134887032695, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039cf8", "Latitude": 48.78891, "Longitude": 9.20021, "X_coordina": 3514783.67, "Y_coordina": 5405734.69, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 67.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 74.7, "Total_wall": 77.7, "Total_wa00": 0.0, "Total_outw": 257.8, "Total_shar": 31.7, "Total_roof": 74.7, "Gross_volu": 223.9, "Is_Gross_v": "false", "Heated_vol": 178.2, "Ridge_mean": 3.0, "Eaves_mean": 3.01, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.103, "Heated_are": 67.1, "Mean_Uvalu": 0.4, "Specific_d": "non calculated", "Specific_s": 106.1, "Total_Year": 7121.0, "January_He": 1394.0, "February_H": 1089.0, "March_Heat": 893.0, "April_Heat": 464.0, "May_Heatin": 125.0, "June_Heati": 7, "July_Heati": 1, "August_Hea": 2, "September_": 187.0, "October_He": 585.0, "November_H": 1009.0, "December_H": 1366.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200101204309698, 48.788902945608498, 0.0 ], [ 9.200246527835269, 48.78889765727191, 0.0 ], [ 9.200248520394045, 48.788919595176424, 0.0 ], [ 9.200251928954572, 48.788955378859704, 0.0 ], [ 9.200187294969902, 48.788957649404544, 0.0 ], [ 9.200081023271718, 48.788961431043269, 0.0 ], [ 9.200101204309698, 48.788902945608498, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039cda", "Latitude": 48.79555, "Longitude": 9.20895, "X_coordina": 3515423.57, "Y_coordina": 5406474.8, "LOD": "LOD2", "Year_of_co": 1932, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 303.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 107.7, "Total_wall": 370.1, "Total_wa00": 0.0, "Total_outw": 624.5, "Total_shar": 0.0, "Total_roof": 147.7, "Gross_volu": 1027.4, "Is_Gross_v": "false", "Heated_vol": 949.3, "Ridge_mean": 11.9, "Eaves_mean": 7.42, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 4, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.64, "Heated_are": 303.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 53.5, "Total_Year": 21075.0, "January_He": 4048.0, "February_H": 2763.0, "March_Heat": 1671.0, "April_Heat": 375.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 51.0, "October_He": 817.0, "November_H": 2517.0, "December_H": 4004.0, "PV_potenti": 5.19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208923918359693, 48.795616169783024, 0.0 ], [ 9.208806652886462, 48.79559785821511, 0.0 ], [ 9.208821178955317, 48.79555601742873, 0.0 ], [ 9.208836109962874, 48.795513366594008, 0.0 ], [ 9.208954598348489, 48.79553122629558, 0.0 ], [ 9.208939392980737, 48.795573338102052, 0.0 ], [ 9.208965134464348, 48.795577427878847, 0.0 ], [ 9.208998230983832, 48.79558276323155, 0.0 ], [ 9.208994865649084, 48.795591761693245, 0.0 ], [ 9.208990020311958, 48.795604899323628, 0.0 ], [ 9.208982346966797, 48.795625325892665, 0.0 ], [ 9.208923918359693, 48.795616169783024, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039c95", "Latitude": 48.79493, "Longitude": 9.20878, "X_coordina": 3515411.28, "Y_coordina": 5406405.74, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1175.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 255.0, "Total_wall": 950.9, "Total_wa00": 0.0, "Total_outw": 1279.0, "Total_shar": 179.3, "Total_roof": 255.0, "Gross_volu": 3672.9, "Is_Gross_v": "false", "Heated_vol": 3672.9, "Ridge_mean": 15.5, "Eaves_mean": 15.51, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 15, "Number_o00": 30, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.398, "Heated_are": 1175.3, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 36.7, "Total_Year": 61783.0, "January_He": 10442.0, "February_H": 7491.0, "March_Heat": 4833.0, "April_Heat": 1108.0, "May_Heatin": 35.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 119.0, "October_He": 2318.0, "November_H": 6641.0, "December_H": 10179.0, "PV_potenti": 9.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208760098357342, 48.794842045272141, 0.0 ], [ 9.208765075683095, 48.794827918251336, 0.0 ], [ 9.20883467108386, 48.794838762740689, 0.0 ], [ 9.208795520016203, 48.794948630389499, 0.0 ], [ 9.2088075055314, 48.794950586976405, 0.0 ], [ 9.208793782079679, 48.794989009215321, 0.0 ], [ 9.208781524344168, 48.794987053120515, 0.0 ], [ 9.208752058154243, 48.795069296663186, 0.0 ], [ 9.208632070405256, 48.795050630156446, 0.0 ], [ 9.208644717454892, 48.795015177364597, 0.0 ], [ 9.208630144426689, 48.795012865754245, 0.0 ], [ 9.208682214729608, 48.794867454949262, 0.0 ], [ 9.208696923450633, 48.794869676383634, 0.0 ], [ 9.208709706514989, 48.794834223337013, 0.0 ], [ 9.208760098357342, 48.794842045272141, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a7c", "Latitude": 48.79084, "Longitude": 9.20065, "X_coordina": 3514815.42, "Y_coordina": 5405949.78, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 10594.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1628.9, "Total_wall": 4762.4, "Total_wa00": 0.0, "Total_outw": 6279.4, "Total_shar": 605.6, "Total_roof": 1818.9, "Gross_volu": 33940.6, "Is_Gross_v": "false", "Heated_vol": 33108.2, "Ridge_mean": 22.5, "Eaves_mean": 19.25, "Storey_num": 8, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.246, "Heated_are": 10594.6, "Mean_Uvalu": 0.48, "Specific_d": "14,6", "Specific_s": 51.4, "Total_Year": 699718.00000000012, "January_He": 120865.0, "February_H": 91249.0, "March_Heat": 67276.0, "April_Heat": 26077.0, "May_Heatin": 3340.0, "June_Heati": 113, "July_Heati": 12, "August_Hea": 24, "September_": 5845.0, "October_He": 34675.0, "November_H": 78986.0, "December_H": 116468.0, "PV_potenti": 98.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201234694495039, 48.791249505796557, 0.0 ], [ 9.201189780524247, 48.791283035856239, 0.0 ], [ 9.199906115856596, 48.790529553330067, 0.0 ], [ 9.200022676290677, 48.790442754481624, 0.0 ], [ 9.20002485879299, 48.790444009621375, 0.0 ], [ 9.200118302147404, 48.790498970453697, 0.0 ], [ 9.200377215077809, 48.790650940760671, 0.0 ], [ 9.200442008825744, 48.790688236223851, 0.0 ], [ 9.200889316352004, 48.790951562430834, 0.0 ], [ 9.200951520749532, 48.790987783039363, 0.0 ], [ 9.201306068650142, 48.791196326120442, 0.0 ], [ 9.201303761858609, 48.791198038701474, 0.0 ], [ 9.201234694495039, 48.791249505796557, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a7d", "Latitude": 48.79039, "Longitude": 9.20108, "X_coordina": 3514846.95, "Y_coordina": 5405899.2, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 76.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 95.9, "Total_wall": 117.5, "Total_wa00": 0.0, "Total_outw": 381.7, "Total_shar": 0.0, "Total_roof": 95.9, "Gross_volu": 293.4, "Is_Gross_v": "false", "Heated_vol": 238.4, "Ridge_mean": 3.1, "Eaves_mean": 3.07, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.146, "Heated_are": 76.3, "Mean_Uvalu": 0.31, "Specific_d": "32,9", "Specific_s": 27.1, "Total_Year": 4571.0, "January_He": 615.0, "February_H": 376.0, "March_Heat": 165.0, "April_Heat": 17.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 31.0, "November_H": 271.0, "December_H": 588.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201140807923936, 48.790437389808538, 0.0 ], [ 9.20114735695164, 48.790441514855978, 0.0 ], [ 9.201139489399671, 48.790448003098845, 0.0 ], [ 9.20113294145, 48.790444147819947, 0.0 ], [ 9.201087753065773, 48.790476958934939, 0.0 ], [ 9.201083660911635, 48.790474628066463, 0.0 ], [ 9.201084610333728, 48.790473817096021, 0.0 ], [ 9.200923777056689, 48.790379228406294, 0.0 ], [ 9.200922148602594, 48.790380400254662, 0.0 ], [ 9.20091941955272, 48.790378606543754, 0.0 ], [ 9.200973558159074, 48.790337776672082, 0.0 ], [ 9.200976423302011, 48.790339570144219, 0.0 ], [ 9.200975066678014, 48.790340651595308, 0.0 ], [ 9.201137670222939, 48.790435506892962, 0.0 ], [ 9.201139162939599, 48.790434425202257, 0.0 ], [ 9.201142164546974, 48.790436308355517, 0.0 ], [ 9.201140807923936, 48.790437389808538, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a7f", "Latitude": 48.79063, "Longitude": 9.20156, "X_coordina": 3514882.39, "Y_coordina": 5405926.79, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 146.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 136.4, "Total_wall": 83.8, "Total_wa00": 0.0, "Total_outw": 289.5, "Total_shar": 281.1, "Total_roof": 139.5, "Gross_volu": 502.4, "Is_Gross_v": "false", "Heated_vol": 457.4, "Ridge_mean": 4.4, "Eaves_mean": 2.95, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.739, "Heated_are": 146.4, "Mean_Uvalu": 0.36, "Specific_d": "32,9", "Specific_s": 15.4, "Total_Year": 7067.0, "January_He": 733.0, "February_H": 404.0, "March_Heat": 118.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 290.0, "December_H": 692.0, "PV_potenti": 7.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201383229541761, 48.790616723440955, 0.0 ], [ 9.201444019713714, 48.790571655307609, 0.0 ], [ 9.201650141282787, 48.790691972051917, 0.0 ], [ 9.201588536385341, 48.790737491337332, 0.0 ], [ 9.201383229541761, 48.790616723440955, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a80", "Latitude": 48.79033, "Longitude": 9.20154, "X_coordina": 3514881.21, "Y_coordina": 5405893.11, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 1913.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 828.4, "Total_wall": 1213.5, "Total_wa00": 0.0, "Total_outw": 1949.4, "Total_shar": 22.5, "Total_roof": 838.1, "Gross_volu": 7391.6, "Is_Gross_v": "false", "Heated_vol": 6563.2, "Ridge_mean": 10.1, "Eaves_mean": 7.91, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.41, "Heated_are": 1913.1, "Mean_Uvalu": 0.49, "Specific_d": "non calculated", "Specific_s": 68.1, "Total_Year": 130280.0, "January_He": 27797.0, "February_H": 20571.0, "March_Heat": 15318.0, "April_Heat": 6147.0, "May_Heatin": 821.0, "June_Heati": 27, "July_Heati": 3, "August_Hea": 7, "September_": 2013.0, "October_He": 10336.0, "November_H": 19682.0, "December_H": 27560.0, "PV_potenti": 40.19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201925799185217, 48.790402924126695, 0.0 ], [ 9.201907593607995, 48.790444590685112, 0.0 ], [ 9.201887364271794, 48.790490667045724, 0.0 ], [ 9.20106377008476, 48.790333123016651, 0.0 ], [ 9.201116502446983, 48.79021289297259, 0.0 ], [ 9.201448962500475, 48.790276517335023, 0.0 ], [ 9.201443700221935, 48.790287856917004, 0.0 ], [ 9.201935239129057, 48.790381325904285, 0.0 ], [ 9.201925799185217, 48.790402924126695, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a81", "Latitude": 48.79049, "Longitude": 9.20212, "X_coordina": 3514923.85, "Y_coordina": 5405911.45, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 1018.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 206.7, "Total_wall": 764.6, "Total_wa00": 0.0, "Total_outw": 1025.2, "Total_shar": 25.6, "Total_roof": 207.8, "Gross_volu": 3046.4, "Is_Gross_v": "false", "Heated_vol": 3182.7, "Ridge_mean": 15.1, "Eaves_mean": 14.42, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.406, "Heated_are": 1018.5, "Mean_Uvalu": 0.47, "Specific_d": "14,6", "Specific_s": 54.9, "Total_Year": 70746.0, "January_He": 12660.0, "February_H": 9415.0, "March_Heat": 6691.0, "April_Heat": 2354.0, "May_Heatin": 269.0, "June_Heati": 9, "July_Heati": 1, "August_Hea": 2, "September_": 520.0, "October_He": 3482.0, "November_H": 8218.0, "December_H": 12246.0, "PV_potenti": 7.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202103541636776, 48.790607008711973, 0.0 ], [ 9.201940655595841, 48.790510176955451, 0.0 ], [ 9.201996017635246, 48.790469164611679, 0.0 ], [ 9.202007822411325, 48.790460331389653, 0.0 ], [ 9.202056399521542, 48.790424276717516, 0.0 ], [ 9.202220235633531, 48.790520477178184, 0.0 ], [ 9.202103541636776, 48.790607008711973, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a82", "Latitude": 48.79008, "Longitude": 9.20284, "X_coordina": 3514976.57, "Y_coordina": 5405865.17, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 1183.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 844.3, "Total_wall": 685.2, "Total_wa00": 0.0, "Total_outw": 1555.5, "Total_shar": 87.9, "Total_roof": 854.8, "Gross_volu": 5125.6, "Is_Gross_v": "false", "Heated_vol": 4281.3, "Ridge_mean": 7.3, "Eaves_mean": 4.52, "Storey_num": 2, "Average_St": 3.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.491, "Heated_are": 1183.5, "Mean_Uvalu": 0.45, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 43.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202657226923892, 48.789876125593445, 0.0 ], [ 9.20267584582658, 48.789869708248212, 0.0 ], [ 9.2026845973691, 48.78988003406279, 0.0 ], [ 9.202745897738538, 48.789860772420845, 0.0 ], [ 9.203051300613101, 48.790268037976922, 0.0 ], [ 9.202991500518191, 48.790288196371591, 0.0 ], [ 9.202999846457866, 48.790299152341838, 0.0 ], [ 9.202976876443909, 48.790306566568113, 0.0 ], [ 9.202969347429999, 48.790295699079998, 0.0 ], [ 9.202847295930955, 48.790335660376442, 0.0 ], [ 9.202844697108953, 48.790332427703724, 0.0 ], [ 9.202847143163989, 48.790331524158866, 0.0 ], [ 9.20254653011466, 48.789930544295899, 0.0 ], [ 9.202543675435027, 48.789931358629509, 0.0 ], [ 9.202541075929599, 48.789927946103667, 0.0 ], [ 9.202664753272542, 48.789886363642005, 0.0 ], [ 9.202657226923892, 48.789876125593445, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a84", "Latitude": 48.79011, "Longitude": 9.20211, "X_coordina": 3514922.96, "Y_coordina": 5405869.19, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 1355.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 415.3, "Total_wall": 826.5, "Total_wa00": 0.0, "Total_outw": 1262.4, "Total_shar": 140.3, "Total_roof": 415.3, "Gross_volu": 4404.0, "Is_Gross_v": "false", "Heated_vol": 4235.6, "Ridge_mean": 10.6, "Eaves_mean": 10.61, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.384, "Heated_are": 1355.4, "Mean_Uvalu": 0.44, "Specific_d": "14,6", "Specific_s": 56.7, "Total_Year": 96659.0, "January_He": 17576.0, "February_H": 12949.0, "March_Heat": 9056.0, "April_Heat": 3074.0, "May_Heatin": 328.0, "June_Heati": 11, "July_Heati": 1, "August_Hea": 2, "September_": 675.0, "October_He": 4730.0, "November_H": 11418.0, "December_H": 17036.0, "PV_potenti": 19.55 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201939078158469, 48.790218827184361, 0.0 ], [ 9.201973058165606, 48.790140174343634, 0.0 ], [ 9.202042097575887, 48.789980618644364, 0.0 ], [ 9.202211120097427, 48.790013144097294, 0.0 ], [ 9.202091519771429, 48.790290678510097, 0.0 ], [ 9.201922358497399, 48.790257703508424, 0.0 ], [ 9.201939078158469, 48.790218827184361, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a85", "Latitude": 48.79062, "Longitude": 9.20049, "X_coordina": 3514803.96, "Y_coordina": 5405924.89, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 404.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 56.0, "Total_wall": 379.0, "Total_wa00": 0.0, "Total_outw": 488.2, "Total_shar": 265.7, "Total_roof": 56.0, "Gross_volu": 1077.5, "Is_Gross_v": "false", "Heated_vol": 1077.5, "Ridge_mean": 19.2, "Eaves_mean": 19.24, "Storey_num": 8, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.456, "Heated_are": 404.9, "Mean_Uvalu": 0.48, "Specific_d": "32,9", "Specific_s": 6.2, "Total_Year": 15827.0, "January_He": 924.0, "February_H": 422.0, "March_Heat": 80.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 6.0, "November_H": 226.0, "December_H": 862.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200442008825744, 48.790688236223851, 0.0 ], [ 9.200377215077809, 48.790650940760671, 0.0 ], [ 9.20045822295676, 48.790590461027541, 0.0 ], [ 9.200521382840316, 48.790627579443381, 0.0 ], [ 9.200442008825744, 48.790688236223851, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a86", "Latitude": 48.79092, "Longitude": 9.20101, "X_coordina": 3514841.48, "Y_coordina": 5405958.33, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 399.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 55.3, "Total_wall": 383.2, "Total_wa00": 0.0, "Total_outw": 481.8, "Total_shar": 253.2, "Total_roof": 55.3, "Gross_volu": 1066.9, "Is_Gross_v": "false", "Heated_vol": 1066.9, "Ridge_mean": 19.3, "Eaves_mean": 19.31, "Storey_num": 8, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.463, "Heated_are": 399.3, "Mean_Uvalu": 0.49, "Specific_d": "32,9", "Specific_s": 6.5, "Total_Year": 15719.0, "January_He": 947.0, "February_H": 436.0, "March_Heat": 85.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 6.0, "November_H": 237.0, "December_H": 885.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200951520749532, 48.790987783039363, 0.0 ], [ 9.200889316352004, 48.790951562430834, 0.0 ], [ 9.200969913658, 48.790890543515729, 0.0 ], [ 9.201032937840644, 48.790927571962548, 0.0 ], [ 9.200951520749532, 48.790987783039363, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a87", "Latitude": 48.79042, "Longitude": 9.20016, "X_coordina": 3514779.18, "Y_coordina": 5405902.83, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 281.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 81.4, "Total_wall": 197.6, "Total_wa00": 0.0, "Total_outw": 293.9, "Total_shar": 285.6, "Total_roof": 81.4, "Gross_volu": 899.2, "Is_Gross_v": "false", "Heated_vol": 878.8, "Ridge_mean": 11.1, "Eaves_mean": 11.05, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.406, "Heated_are": 281.2, "Mean_Uvalu": 0.36, "Specific_d": "32,9", "Specific_s": 4.9, "Total_Year": 10627.0, "January_He": 514.0, "February_H": 243.0, "March_Heat": 47.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 2.0, "November_H": 114.0, "December_H": 464.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20002485879299, 48.790444009621375, 0.0 ], [ 9.200104780518961, 48.790384161486514, 0.0 ], [ 9.200197537299399, 48.790437594746635, 0.0 ], [ 9.200118302147404, 48.790498970453697, 0.0 ], [ 9.20002485879299, 48.790444009621375, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a88", "Latitude": 48.79066, "Longitude": 9.20098, "X_coordina": 3514839.83, "Y_coordina": 5405929.7, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 11142.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 2894.1, "Total_wall": 2525.3, "Total_wa00": 0.0, "Total_outw": 3868.6, "Total_shar": 627.4, "Total_roof": 2908.3, "Gross_volu": 37715.1, "Is_Gross_v": "false", "Heated_vol": 34821.0, "Ridge_mean": 15.5, "Eaves_mean": 12.07, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.226, "Heated_are": 11142.7, "Mean_Uvalu": 0.45, "Specific_d": "32,9", "Specific_s": 2.4, "Total_Year": 392552.0, "January_He": 10696.0, "February_H": 4254.0, "March_Heat": 608.0, "April_Heat": 9.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 18.0, "November_H": 1577.0, "December_H": 9239.0, "PV_potenti": 133.62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201461843928968, 48.790910546237633, 0.0 ], [ 9.201346100031195, 48.790996985412619, 0.0 ], [ 9.201260479354369, 48.791060980848343, 0.0 ], [ 9.201032937840644, 48.790927571962548, 0.0 ], [ 9.200969913658, 48.790890543515729, 0.0 ], [ 9.200521382840316, 48.790627579443381, 0.0 ], [ 9.20045822295676, 48.790590461027541, 0.0 ], [ 9.200329175864512, 48.790514790057976, 0.0 ], [ 9.200559314366668, 48.790344613677334, 0.0 ], [ 9.2006161704339, 48.790302610233439, 0.0 ], [ 9.201545971374252, 48.790847632347386, 0.0 ], [ 9.201461843928968, 48.790910546237633, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a89", "Latitude": 48.79037, "Longitude": 9.20042, "X_coordina": 3514798.83, "Y_coordina": 5405897.27, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 1129.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 326.8, "Total_wall": 387.2, "Total_wa00": 0.0, "Total_outw": 580.0, "Total_shar": 659.7, "Total_roof": 326.8, "Gross_volu": 3640.8, "Is_Gross_v": "false", "Heated_vol": 3529.6, "Ridge_mean": 11.1, "Eaves_mean": 11.14, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.289, "Heated_are": 1129.5, "Mean_Uvalu": 0.31, "Specific_d": "32,9", "Specific_s": 1.7, "Total_Year": 39036.0, "January_He": 793.0, "February_H": 320.0, "March_Heat": 47.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 1.0, "November_H": 98.0, "December_H": 663.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200559314366668, 48.790344613677334, 0.0 ], [ 9.200329175864512, 48.790514790057976, 0.0 ], [ 9.200197537299399, 48.790437594746635, 0.0 ], [ 9.200344094180728, 48.790330780375321, 0.0 ], [ 9.200428628547376, 48.790267416968362, 0.0 ], [ 9.200559314366668, 48.790344613677334, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a8a", "Latitude": 48.79034, "Longitude": 9.20027, "X_coordina": 3514787.52, "Y_coordina": 5405893.41, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 507.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 147.0, "Total_wall": 217.4, "Total_wa00": 0.0, "Total_outw": 311.6, "Total_shar": 468.8, "Total_roof": 147.0, "Gross_volu": 1631.1, "Is_Gross_v": "false", "Heated_vol": 1587.2, "Ridge_mean": 11.1, "Eaves_mean": 11.1, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.317, "Heated_are": 507.9, "Mean_Uvalu": 0.32, "Specific_d": "32,9", "Specific_s": 2.1, "Total_Year": 17769.0, "January_He": 437.0, "February_H": 176.0, "March_Heat": 28.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 1.0, "November_H": 59.0, "December_H": 379.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200344094180728, 48.790330780375321, 0.0 ], [ 9.200197537299399, 48.790437594746635, 0.0 ], [ 9.200104780518961, 48.790384161486514, 0.0 ], [ 9.200249289603402, 48.790275732167935, 0.0 ], [ 9.200344094180728, 48.790330780375321, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a8b", "Latitude": 48.79055, "Longitude": 9.20142, "X_coordina": 3514872.26, "Y_coordina": 5405917.75, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 70.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.4, "Total_wall": 51.5, "Total_wa00": 0.0, "Total_outw": 129.4, "Total_shar": 122.9, "Total_roof": 47.5, "Gross_volu": 170.6, "Is_Gross_v": "false", "Heated_vol": 170.6, "Ridge_mean": 4.4, "Eaves_mean": 4.41, "Storey_num": 2, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.852, "Heated_are": 70.6, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 8.9, "Total_Year": 2945.0, "January_He": 222.0, "February_H": 101.0, "March_Heat": 26.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 3.0, "November_H": 61.0, "December_H": 212.0, "PV_potenti": 1.83 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201441427808767, 48.790570131140051, 0.0 ], [ 9.201444019713714, 48.790571655307609, 0.0 ], [ 9.201383229541761, 48.790616723440955, 0.0 ], [ 9.20131311205609, 48.790575571097662, 0.0 ], [ 9.201373084958464, 48.79053032458291, 0.0 ], [ 9.201441427808767, 48.790570131140051, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a8c", "Latitude": 48.79058, "Longitude": 9.20163, "X_coordina": 3514887.63, "Y_coordina": 5405921.24, "LOD": "LOD2", "Year_of_co": 1973, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 442.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 181.4, "Total_wall": 342.2, "Total_wa00": 0.0, "Total_outw": 677.2, "Total_shar": 223.8, "Total_roof": 181.4, "Gross_volu": 1563.3, "Is_Gross_v": "false", "Heated_vol": 1381.9, "Ridge_mean": 8.6, "Eaves_mean": 8.62, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.48, "Heated_are": 442.2, "Mean_Uvalu": 0.46, "Specific_d": "32,9", "Specific_s": 8.8, "Total_Year": 18406.0, "January_He": 1391.0, "February_H": 605.0, "March_Heat": 145.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 365.0, "December_H": 1348.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201441427808767, 48.790570131140051, 0.0 ], [ 9.201518089718764, 48.790512266048154, 0.0 ], [ 9.201734304176902, 48.790638050321519, 0.0 ], [ 9.201655740968233, 48.79069690804522, 0.0 ], [ 9.201648648929835, 48.790693143672165, 0.0 ], [ 9.201650141282787, 48.790691972051917, 0.0 ], [ 9.201444019713714, 48.790571655307609, 0.0 ], [ 9.201441427808767, 48.790570131140051, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a8d", "Latitude": 48.79041, "Longitude": 9.20203, "X_coordina": 3514916.64, "Y_coordina": 5405902.08, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 75.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.7, "Total_wall": 81.9, "Total_wa00": 0.0, "Total_outw": 81.9, "Total_shar": 47.8, "Total_roof": 41.7, "Gross_volu": 196.0, "Is_Gross_v": "false", "Heated_vol": 196.0, "Ridge_mean": 4.7, "Eaves_mean": 4.69, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.843, "Heated_are": 75.7, "Mean_Uvalu": 0.44, "Specific_d": "non calculated", "Specific_s": 67.3, "Total_Year": 5097.0, "January_He": 1141.0, "February_H": 802.0, "March_Heat": 571.0, "April_Heat": 223.0, "May_Heatin": 36.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 58.0, "October_He": 359.0, "November_H": 761.0, "December_H": 1145.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202056385948294, 48.7904242857337, 0.0 ], [ 9.202007822411325, 48.790460331389653, 0.0 ], [ 9.201907593607995, 48.790444590685112, 0.0 ], [ 9.201925785611945, 48.790402933142865, 0.0 ], [ 9.202056385948294, 48.7904242857337, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a8e", "Latitude": 48.79051, "Longitude": 9.20135, "X_coordina": 3514867.02, "Y_coordina": 5405913.1, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 71.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.3, "Total_wall": 80.4, "Total_wa00": 0.0, "Total_outw": 181.9, "Total_shar": 58.5, "Total_roof": 48.4, "Gross_volu": 176.5, "Is_Gross_v": "false", "Heated_vol": 176.5, "Ridge_mean": 4.5, "Eaves_mean": 4.47, "Storey_num": 2, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.997, "Heated_are": 71.9, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 12.8, "Total_Year": 3284.0, "January_He": 313.0, "February_H": 150.0, "March_Heat": 42.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 6.0, "November_H": 99.0, "December_H": 309.0, "PV_potenti": 1.83 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20131311205609, 48.790575571097662, 0.0 ], [ 9.201241083976592, 48.790533073195967, 0.0 ], [ 9.201300922238405, 48.790488186648211, 0.0 ], [ 9.201373084958464, 48.79053032458291, 0.0 ], [ 9.20131311205609, 48.790575571097662, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a8f", "Latitude": 48.79008, "Longitude": 9.20162, "X_coordina": 3514886.54, "Y_coordina": 5405865.16, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 2910.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 551.3, "Total_wall": 1353.5, "Total_wa00": 0.0, "Total_outw": 1780.1, "Total_shar": 622.3, "Total_roof": 551.3, "Gross_volu": 9365.0, "Is_Gross_v": "false", "Heated_vol": 9095.8, "Ridge_mean": 17.0, "Eaves_mean": 16.99, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.267, "Heated_are": 2910.7, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 2.7, "Total_Year": 103376.0, "January_He": 3061.0, "February_H": 1277.0, "March_Heat": 227.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 7.0, "November_H": 471.0, "December_H": 2682.0, "PV_potenti": 26.07 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201270261725183, 48.790104086520408, 0.0 ], [ 9.201318122808948, 48.789991058783372, 0.0 ], [ 9.201425991499978, 48.790011732438273, 0.0 ], [ 9.201871768061096, 48.790097188609685, 0.0 ], [ 9.201862599246265, 48.790118516581835, 0.0 ], [ 9.201828619441681, 48.790197259313537, 0.0 ], [ 9.201823361223951, 48.790209588065792, 0.0 ], [ 9.201270261725183, 48.790104086520408, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a90", "Latitude": 48.79015, "Longitude": 9.20195, "X_coordina": 3514910.76, "Y_coordina": 5405872.83, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 450.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 77.0, "Total_wall": 380.3, "Total_wa00": 0.0, "Total_outw": 490.2, "Total_shar": 336.1, "Total_roof": 77.0, "Gross_volu": 1406.3, "Is_Gross_v": "false", "Heated_vol": 1406.3, "Ridge_mean": 18.2, "Eaves_mean": 18.25, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.38, "Heated_are": 450.0, "Mean_Uvalu": 0.45, "Specific_d": "14,6", "Specific_s": 58.6, "Total_Year": 32937.0, "January_He": 5807.0, "February_H": 4349.0, "March_Heat": 3239.0, "April_Heat": 1360.0, "May_Heatin": 220.0, "June_Heati": 8, "July_Heati": 1, "August_Hea": 2, "September_": 314.0, "October_He": 1668.0, "November_H": 3764.0, "December_H": 5630.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201973058165606, 48.790140174343634, 0.0 ], [ 9.201939078158469, 48.790218827184361, 0.0 ], [ 9.201828619441681, 48.790197259313537, 0.0 ], [ 9.201862599246265, 48.790118516581835, 0.0 ], [ 9.201973058165606, 48.790140174343634, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a91", "Latitude": 48.79031, "Longitude": 9.20019, "X_coordina": 3514781.45, "Y_coordina": 5405890.84, "LOD": "LOD2", "Year_of_co": 2001, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2523, "PrimaryUsa": "industry", "PrimaryU00": 60.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 32.9, "Total_wall": 69.1, "Total_wa00": 0.0, "Total_outw": 154.8, "Total_shar": 83.6, "Total_roof": 32.9, "Gross_volu": 132.5, "Is_Gross_v": "false", "Heated_vol": 132.5, "Ridge_mean": 4.0, "Eaves_mean": 4.05, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.017, "Heated_are": 60.2, "Mean_Uvalu": 0.64, "Specific_d": "32,9", "Specific_s": 22.4, "Total_Year": 3330.0, "January_He": 424.0, "February_H": 236.0, "March_Heat": 84.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 167.0, "December_H": 419.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200080582925583, 48.790356776826712, 0.0 ], [ 9.200168645003695, 48.790290619849131, 0.0 ], [ 9.200202883824183, 48.790310523373542, 0.0 ], [ 9.200114686020536, 48.79037677053654, 0.0 ], [ 9.200080582925583, 48.790356776826712, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039a5a", "Latitude": 48.79013, "Longitude": 9.19777, "X_coordina": 3514604.23, "Y_coordina": 5405870.25, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 865.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 161.2, "Total_wall": 822.8, "Total_wa00": 0.0, "Total_outw": 1118.2, "Total_shar": 0.0, "Total_roof": 202.4, "Gross_volu": 2867.0, "Is_Gross_v": "false", "Heated_vol": 2705.9, "Ridge_mean": 20.0, "Eaves_mean": 15.39, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 14, "Number_o00": 24, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.431, "Heated_are": 865.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 40.1, "Total_Year": 48462.0, "January_He": 8649.0, "February_H": 6033.0, "March_Heat": 3634.0, "April_Heat": 691.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 78.0, "October_He": 1728.0, "November_H": 5411.0, "December_H": 8502.0, "PV_potenti": 10.83 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197694249719225, 48.790100299625571, 0.0 ], [ 9.197733874669469, 48.790071186261017, 0.0 ], [ 9.197794297318181, 48.790105073624083, 0.0 ], [ 9.197852265427404, 48.790137706241751, 0.0 ], [ 9.19772376427237, 48.790234325077371, 0.0 ], [ 9.197666744900456, 48.790200701607212, 0.0 ], [ 9.197606042621281, 48.790164926261546, 0.0 ], [ 9.197647160456269, 48.79013473128186, 0.0 ], [ 9.19765084343919, 48.790136883127531, 0.0 ], [ 9.197697931995085, 48.790102271623716, 0.0 ], [ 9.197694249719225, 48.790100299625571, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039923", "Latitude": 48.79143, "Longitude": 9.20098, "X_coordina": 3514839.55, "Y_coordina": 5406014.77, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 1525.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 367.6, "Total_wall": 613.0, "Total_wa00": 0.0, "Total_outw": 830.8, "Total_shar": 455.0, "Total_roof": 406.1, "Gross_volu": 4842.0, "Is_Gross_v": "false", "Heated_vol": 4766.1, "Ridge_mean": 15.2, "Eaves_mean": 10.86, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.289, "Heated_are": 1525.1, "Mean_Uvalu": 0.46, "Specific_d": "73,0", "Specific_s": 45.7, "Total_Year": 180976.0, "January_He": 15941.0, "February_H": 11867.0, "March_Heat": 8390.0, "April_Heat": 2883.0, "May_Heatin": 282.0, "June_Heati": 8, "July_Heati": 1, "August_Hea": 2, "September_": 548.0, "October_He": 4111.0, "November_H": 10206.0, "December_H": 15386.0, "PV_potenti": 22.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201112717018891, 48.791445122883069, 0.0 ], [ 9.201090057565423, 48.791462337862342, 0.0 ], [ 9.201042699320416, 48.791497310909328, 0.0 ], [ 9.200948933155235, 48.791566715744345, 0.0 ], [ 9.200948119807075, 48.791567526476051, 0.0 ], [ 9.200941068634085, 48.791574013279508, 0.0 ], [ 9.200815427164788, 48.791499955549334, 0.0 ], [ 9.200850574222448, 48.791474355949411, 0.0 ], [ 9.200768856933808, 48.791425490082084, 0.0 ], [ 9.200760944334728, 48.791420737925776, 0.0 ], [ 9.200826754364456, 48.791371345039813, 0.0 ], [ 9.200895820876374, 48.791319518497424, 0.0 ], [ 9.201112717018891, 48.791445122883069, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039924", "Latitude": 48.79144, "Longitude": 9.20083, "X_coordina": 3514828.81, "Y_coordina": 5406016.52, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 26.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 32.4, "Total_wall": 24.3, "Total_wa00": 0.0, "Total_outw": 77.8, "Total_shar": 115.8, "Total_roof": 32.4, "Gross_volu": 97.5, "Is_Gross_v": "false", "Heated_vol": 81.8, "Ridge_mean": 3.0, "Eaves_mean": 2.99, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.963, "Heated_are": 26.2, "Mean_Uvalu": 0.37, "Specific_d": "73,0", "Specific_s": 93.9, "Total_Year": 4368.0, "January_He": 524.0, "February_H": 406.0, "March_Heat": 309.0, "April_Heat": 127.0, "May_Heatin": 19.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 35.0, "October_He": 171.0, "November_H": 362.0, "December_H": 505.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200850574222448, 48.791474355949411, 0.0 ], [ 9.200815427164788, 48.791499955549334, 0.0 ], [ 9.200730860812671, 48.79145334271368, 0.0 ], [ 9.200768856933808, 48.791425490082084, 0.0 ], [ 9.200850574222448, 48.791474355949411, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003983f", "Latitude": 48.79514, "Longitude": 9.20869, "X_coordina": 3515404.93, "Y_coordina": 5406429.4, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1088.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 233.2, "Total_wall": 913.0, "Total_wa00": 0.0, "Total_outw": 1262.1, "Total_shar": 179.1, "Total_roof": 233.2, "Gross_volu": 3534.0, "Is_Gross_v": "false", "Heated_vol": 3400.6, "Ridge_mean": 16.3, "Eaves_mean": 16.29, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 17, "Number_o00": 31, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.4, "Heated_are": 1088.2, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 35.6, "Total_Year": 55982.0, "January_He": 9438.0, "February_H": 6782.0, "March_Heat": 4288.0, "April_Heat": 858.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 87.0, "October_He": 2040.0, "November_H": 6054.0, "December_H": 9179.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208545348845444, 48.795242504240136, 0.0 ], [ 9.208562782037443, 48.795245260298991, 0.0 ], [ 9.208569238737585, 48.795226814278074, 0.0 ], [ 9.208572603378741, 48.795217635982411, 0.0 ], [ 9.208558030295194, 48.79521532436312, 0.0 ], [ 9.208604984159535, 48.795083231549441, 0.0 ], [ 9.208619556834126, 48.795085453240034, 0.0 ], [ 9.208632070405256, 48.795050630156446, 0.0 ], [ 9.208752058154243, 48.795069296663186, 0.0 ], [ 9.208722998322225, 48.795151089842882, 0.0 ], [ 9.20873525572239, 48.795152956020907, 0.0 ], [ 9.208721395681446, 48.795191288573875, 0.0 ], [ 9.208709546964636, 48.795189511577256, 0.0 ], [ 9.208682637847923, 48.795264826351811, 0.0 ], [ 9.208674330124245, 48.795263582476238, 0.0 ], [ 9.2086712362201, 48.795272400590058, 0.0 ], [ 9.208541850327327, 48.79525222231868, 0.0 ], [ 9.208545348845444, 48.795242504240136, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000395e8", "Latitude": 48.79174, "Longitude": 9.20242, "X_coordina": 3514945.25, "Y_coordina": 5406049.84, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 847.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 143.0, "Total_wall": 754.1, "Total_wa00": 0.0, "Total_outw": 1017.3, "Total_shar": 168.6, "Total_roof": 221.2, "Gross_volu": 2790.1, "Is_Gross_v": "false", "Heated_vol": 2647.1, "Ridge_mean": 21.9, "Eaves_mean": 17.05, "Storey_num": 7, "Average_St": 3.0, "Number_of_": 14, "Number_o00": 21, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.417, "Heated_are": 847.1, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 37.1, "Total_Year": 44806.0, "January_He": 7966.0, "February_H": 5445.0, "March_Heat": 3173.0, "April_Heat": 562.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 57.0, "October_He": 1462.0, "November_H": 4861.0, "December_H": 7846.0, "PV_potenti": 9.01 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202483375637977, 48.791789016785735, 0.0 ], [ 9.202449453706922, 48.791814524804877, 0.0 ], [ 9.202431407386218, 48.79182813499277, 0.0 ], [ 9.202387893952849, 48.791803752255838, 0.0 ], [ 9.202370932058345, 48.791816281445229, 0.0 ], [ 9.202322913715609, 48.791788489503439, 0.0 ], [ 9.202301606819121, 48.791803544177192, 0.0 ], [ 9.202280735494341, 48.791791531078204, 0.0 ], [ 9.202249905950371, 48.791773780354866, 0.0 ], [ 9.202361854186041, 48.791691033821529, 0.0 ], [ 9.202503457598935, 48.791773964232355, 0.0 ], [ 9.202483375637977, 48.791789016785735, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000395e9", "Latitude": 48.79179, "Longitude": 9.20256, "X_coordina": 3514955.38, "Y_coordina": 5406055.82, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 41.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 45.2, "Total_wall": 44.5, "Total_wa00": 0.0, "Total_outw": 164.0, "Total_shar": 45.1, "Total_roof": 45.2, "Gross_volu": 97.0, "Is_Gross_v": "false", "Heated_vol": 97.0, "Ridge_mean": 2.1, "Eaves_mean": 2.15, "Storey_num": 1, "Average_St": 2.1, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.39, "Heated_are": 41.3, "Mean_Uvalu": 0.36, "Specific_d": "15,8", "Specific_s": 62.3, "Total_Year": 3230.0, "January_He": 624.0, "February_H": 435.0, "March_Heat": 278.0, "April_Heat": 69.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 12.0, "October_He": 145.0, "November_H": 396.0, "December_H": 612.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202503457598935, 48.791773964232355, 0.0 ], [ 9.202580124154791, 48.791818521419295, 0.0 ], [ 9.202539018769532, 48.791851415836405, 0.0 ], [ 9.202512211195474, 48.791852362218243, 0.0 ], [ 9.202449453706922, 48.791814524804877, 0.0 ], [ 9.202483375637977, 48.791789016785735, 0.0 ], [ 9.202503457598935, 48.791773964232355, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000394b3", "Latitude": 48.79303, "Longitude": 9.20162, "X_coordina": 3514886.23, "Y_coordina": 5406193.12, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 958.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 179.0, "Total_wall": 669.1, "Total_wa00": 0.0, "Total_outw": 980.8, "Total_shar": 310.4, "Total_roof": 244.6, "Gross_volu": 3174.4, "Is_Gross_v": "false", "Heated_vol": 2995.4, "Ridge_mean": 20.7, "Eaves_mean": 14.32, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 15, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.358, "Heated_are": 958.5, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 34.1, "Total_Year": 47825.0, "January_He": 8185.0, "February_H": 5698.0, "March_Heat": 3431.0, "April_Heat": 655.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 57.0, "October_He": 1530.0, "November_H": 5019.0, "December_H": 8048.0, "PV_potenti": 11.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201448229211497, 48.793051021441492, 0.0 ], [ 9.2015038623192, 48.793008929795384, 0.0 ], [ 9.201563702200612, 48.792963773357144, 0.0 ], [ 9.201708989814893, 48.793048496749016, 0.0 ], [ 9.201647243471394, 48.793093386829604, 0.0 ], [ 9.201589839637869, 48.793135121949796, 0.0 ], [ 9.201544409262555, 48.793108044548148, 0.0 ], [ 9.201552007856675, 48.79310227614004, 0.0 ], [ 9.201528135831284, 48.79308873945844, 0.0 ], [ 9.201517549501361, 48.793096131717775, 0.0 ], [ 9.201515777309952, 48.793095415430329, 0.0 ], [ 9.20152567989479, 48.793087215055472, 0.0 ], [ 9.201500715116589, 48.793072691121097, 0.0 ], [ 9.201493523022846, 48.793078009196684, 0.0 ], [ 9.201448229211497, 48.793051021441492, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000394b4", "Latitude": 48.79307, "Longitude": 9.20143, "X_coordina": 3514872.07, "Y_coordina": 5406198.06, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 49.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 26.6, "Total_wall": 75.7, "Total_wa00": 0.0, "Total_outw": 178.6, "Total_shar": 0.0, "Total_roof": 26.6, "Gross_volu": 97.7, "Is_Gross_v": "false", "Heated_vol": 97.7, "Ridge_mean": 3.7, "Eaves_mean": 3.67, "Storey_num": 2, "Average_St": 1.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.319, "Heated_are": 49.3, "Mean_Uvalu": 0.49, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201336531839623, 48.793095549107463, 0.0 ], [ 9.201381990288512, 48.793061658354809, 0.0 ], [ 9.201382261770146, 48.793061478032897, 0.0 ], [ 9.201435468120028, 48.793093127999661, 0.0 ], [ 9.201389873577961, 48.793127019011209, 0.0 ], [ 9.201336531839623, 48.793095549107463, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000391fe", "Latitude": 48.78883, "Longitude": 9.21357, "X_coordina": 3515765.68, "Y_coordina": 5405728.23, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 100.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 45.4, "Total_wall": 60.9, "Total_wa00": 0.0, "Total_outw": 126.2, "Total_shar": 216.8, "Total_roof": 56.0, "Gross_volu": 358.6, "Is_Gross_v": "false", "Heated_vol": 313.3, "Ridge_mean": 9.6, "Eaves_mean": 6.12, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.483, "Heated_are": 100.2, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 45.3, "Total_Year": 6128.0, "January_He": 1107.0, "February_H": 795.0, "March_Heat": 487.0, "April_Heat": 98.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 12.0, "October_He": 237.0, "November_H": 708.0, "December_H": 1094.0, "PV_potenti": 1.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213532627552178, 48.788801669360353, 0.0 ], [ 9.213560129511189, 48.788836508738896, 0.0 ], [ 9.213586126512135, 48.788869462505282, 0.0 ], [ 9.213514099149355, 48.788893156064653, 0.0 ], [ 9.213494625312057, 48.788858032021743, 0.0 ], [ 9.213474465334878, 48.788821560392492, 0.0 ], [ 9.213532627552178, 48.788801669360353, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000391a2", "Latitude": 48.78873, "Longitude": 9.21186, "X_coordina": 3515639.53, "Y_coordina": 5405717.02, "LOD": "LOD2", "Year_of_co": 1991, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 106.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 43.3, "Total_wall": 111.0, "Total_wa00": 0.0, "Total_outw": 208.1, "Total_shar": 114.3, "Total_roof": 66.4, "Gross_volu": 353.4, "Is_Gross_v": "false", "Heated_vol": 332.9, "Ridge_mean": 10.5, "Eaves_mean": 6.43, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.65, "Heated_are": 106.5, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 60.9, "Total_Year": 8178.0, "January_He": 1599.0, "February_H": 1115.0, "March_Heat": 668.0, "April_Heat": 133.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 20.0, "October_He": 344.0, "November_H": 1042.0, "December_H": 1565.0, "PV_potenti": 2.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211819213591408, 48.78872776905704, 0.0 ], [ 9.211874754143036, 48.788731533603411, 0.0 ], [ 9.21186827241422, 48.78877587788763, 0.0 ], [ 9.21175134166471, 48.788768899059924, 0.0 ], [ 9.211757411445355, 48.788723656303212, 0.0 ], [ 9.211819213591408, 48.78872776905704, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003914b", "Latitude": 48.78772, "Longitude": 9.20087, "X_coordina": 3514832.14, "Y_coordina": 5405602.65, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 444.8, "SecondaryU": "retail", "Secondar00": 91.1, "BuildingTy": "GMH", "Footprint_": 113.8, "Total_wall": 311.1, "Total_wa00": 0.0, "Total_outw": 462.7, "Total_shar": 363.9, "Total_roof": 166.6, "Gross_volu": 1732.8, "Is_Gross_v": "false", "Heated_vol": 1674.6, "Ridge_mean": 18.9, "Eaves_mean": 12.6, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 9, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.349, "Heated_are": 535.9, "Mean_Uvalu": 0.45, "Specific_d": "25,6", "Specific_s": 39.4, "Total_Year": 34785.0, "January_He": 4914.0, "February_H": 3696.0, "March_Heat": 2505.0, "April_Heat": 640.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 79.0, "October_He": 1223.0, "November_H": 3247.0, "December_H": 4763.0, "PV_potenti": 6.58 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200802600973432, 48.787808163141058, 0.0 ], [ 9.200763743628844, 48.787755895319677, 0.0 ], [ 9.200727485632259, 48.787707040053085, 0.0 ], [ 9.200795983404756, 48.78768443971942, 0.0 ], [ 9.200799265977007, 48.787688570484178, 0.0 ], [ 9.200802255926595, 48.787687576110244, 0.0 ], [ 9.200842347165018, 48.787673927721599, 0.0 ], [ 9.20087819483658, 48.787722244126108, 0.0 ], [ 9.200915136294162, 48.787771817542009, 0.0 ], [ 9.200802600973432, 48.787808163141058, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00039116", "Latitude": 48.78909, "Longitude": 9.20046, "X_coordina": 3514802.02, "Y_coordina": 5405754.97, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1011.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 199.4, "Total_wall": 729.6, "Total_wa00": 0.0, "Total_outw": 1040.6, "Total_shar": 428.3, "Total_roof": 265.7, "Gross_volu": 3724.5, "Is_Gross_v": "false", "Heated_vol": 3525.1, "Ridge_mean": 19.3, "Eaves_mean": 16.55, "Storey_num": 6, "Average_St": 3.1, "Number_of_": 16, "Number_o00": 28, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.333, "Heated_are": 1011.6, "Mean_Uvalu": 0.6, "Specific_d": "15,8", "Specific_s": 47.1, "Total_Year": 63656.0, "January_He": 11052.0, "February_H": 8137.0, "March_Heat": 5671.0, "April_Heat": 1659.0, "May_Heatin": 88.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 230.0, "October_He": 2789.0, "November_H": 7215.0, "December_H": 10790.0, "PV_potenti": 10.01 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200386440200514, 48.789071416143386, 0.0 ], [ 9.200449032614786, 48.789069059116983, 0.0 ], [ 9.200469579327802, 48.789068303961081, 0.0 ], [ 9.200469001654735, 48.789059942067958, 0.0 ], [ 9.200468423623654, 48.789051490251786, 0.0 ], [ 9.200510877216288, 48.789049797713815, 0.0 ], [ 9.200512713384155, 48.789066610237867, 0.0 ], [ 9.200533940544762, 48.789065853885695, 0.0 ], [ 9.200534516437054, 48.789073766163384, 0.0 ], [ 9.200538098209776, 48.789118811670747, 0.0 ], [ 9.200525851896014, 48.789119282614479, 0.0 ], [ 9.200527290192255, 48.789138703616516, 0.0 ], [ 9.20052916255894, 48.789164598364792, 0.0 ], [ 9.200303693336059, 48.789173083894731, 0.0 ], [ 9.20029527318783, 48.789074901923698, 0.0 ], [ 9.200298266808655, 48.789074806793117, 0.0 ], [ 9.200322215058961, 48.789073865899681, 0.0 ], [ 9.200320786150252, 48.789056782893255, 0.0 ], [ 9.200364736383221, 48.789054997881998, 0.0 ], [ 9.200365450844878, 48.789063539384927, 0.0 ], [ 9.200366165664809, 48.78907217081089, 0.0 ], [ 9.200386440200514, 48.789071416143386, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003911b", "Latitude": 48.78893, "Longitude": 9.20034, "X_coordina": 3514793.24, "Y_coordina": 5405737.29, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 68.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 41.2, "Total_wall": 120.4, "Total_wa00": 0.0, "Total_outw": 240.1, "Total_shar": 31.7, "Total_roof": 41.2, "Gross_volu": 212.8, "Is_Gross_v": "false", "Heated_vol": 212.8, "Ridge_mean": 5.2, "Eaves_mean": 5.17, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.953, "Heated_are": 68.1, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 22.6, "Total_Year": 3779.0, "January_He": 487.0, "February_H": 264.0, "March_Heat": 98.0, "April_Heat": 8.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 17.0, "November_H": 193.0, "December_H": 474.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200251928954572, 48.788955378859704, 0.0 ], [ 9.200248520394045, 48.788919595176424, 0.0 ], [ 9.200308121520345, 48.788917962817209, 0.0 ], [ 9.200344854840193, 48.788983543176343, 0.0 ], [ 9.200254914222212, 48.788987386485722, 0.0 ], [ 9.200251928954572, 48.788955378859704, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038ea5", "Latitude": 48.79393, "Longitude": 9.20008, "X_coordina": 3514772.56, "Y_coordina": 5406292.72, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 262.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 163.9, "Total_wall": 153.3, "Total_wa00": 0.0, "Total_outw": 328.0, "Total_shar": 229.4, "Total_roof": 163.9, "Gross_volu": 859.5, "Is_Gross_v": "false", "Heated_vol": 818.7, "Ridge_mean": 5.2, "Eaves_mean": 5.25, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.569, "Heated_are": 262.0, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 10.7, "Total_Year": 11414.0, "January_He": 953.0, "February_H": 488.0, "March_Heat": 146.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 298.0, "December_H": 899.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199911092066124, 48.793940346576811, 0.0 ], [ 9.200011785304453, 48.793865894864439, 0.0 ], [ 9.200124606701806, 48.793932152370388, 0.0 ], [ 9.200119857042585, 48.793935667643524, 0.0 ], [ 9.200159010201714, 48.79395862002962, 0.0 ], [ 9.200063611440036, 48.794029645575954, 0.0 ], [ 9.199911092066124, 48.793940346576811, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d5c", "Latitude": 48.79336, "Longitude": 9.21366, "X_coordina": 3515770.82, "Y_coordina": 5406232.11, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 74.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 59.1, "Total_wall": 49.5, "Total_wa00": 0.0, "Total_outw": 140.1, "Total_shar": 136.8, "Total_roof": 67.9, "Gross_volu": 268.2, "Is_Gross_v": "false", "Heated_vol": 233.5, "Ridge_mean": 5.7, "Eaves_mean": 3.38, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.694, "Heated_are": 74.7, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 60.5, "Total_Year": 5702.0, "January_He": 1090.0, "February_H": 781.0, "March_Heat": 482.0, "April_Heat": 105.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 250.0, "November_H": 714.0, "December_H": 1074.0, "PV_potenti": 3.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213545102889594, 48.793377409300675, 0.0 ], [ 9.213612134308423, 48.793329535565491, 0.0 ], [ 9.213693598740592, 48.79337929201651, 0.0 ], [ 9.213626703434876, 48.79342716554617, 0.0 ], [ 9.213545102889594, 48.793377409300675, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d2c", "Latitude": 48.79345, "Longitude": 9.20374, "X_coordina": 3515041.97, "Y_coordina": 5406240.93, "LOD": "LOD2", "Year_of_co": 2009, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 12932.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 778.8, "Total_wall": 7046.9, "Total_wa00": 0.0, "Total_outw": 7364.0, "Total_shar": 861.1, "Total_roof": 778.8, "Gross_volu": 40414.5, "Is_Gross_v": "false", "Heated_vol": 40414.5, "Ridge_mean": 56.2, "Eaves_mean": 56.22, "Storey_num": 22, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.213, "Heated_are": 12932.6, "Mean_Uvalu": 0.46, "Specific_d": "14,6", "Specific_s": 49.4, "Total_Year": 827871.0, "January_He": 140599.0, "February_H": 107609.0, "March_Heat": 79812.0, "April_Heat": 31147.0, "May_Heatin": 3875.0, "June_Heati": 130, "July_Heati": 13, "August_Hea": 29, "September_": 7021.0, "October_He": 41022.0, "November_H": 92604.0, "December_H": 135064.0, "PV_potenti": 35.84 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203569346238877, 48.793481712201505, 0.0 ], [ 9.203579237286162, 48.793470724040311, 0.0 ], [ 9.203668391527318, 48.793371560541317, 0.0 ], [ 9.203691967991407, 48.793345530928313, 0.0 ], [ 9.203676700241163, 48.793339533053199, 0.0 ], [ 9.203709761188012, 48.793302965602678, 0.0 ], [ 9.203716985844892, 48.793305740453299, 0.0 ], [ 9.20374083190695, 48.79327908088802, 0.0 ], [ 9.203738105512279, 48.79327800662864, 0.0 ], [ 9.203741628124689, 48.793274043758991, 0.0 ], [ 9.203752331695707, 48.793262064985669, 0.0 ], [ 9.203770623062008, 48.793241709892364, 0.0 ], [ 9.203816835664369, 48.793259972520879, 0.0 ], [ 9.203815344742949, 48.793261503860435, 0.0 ], [ 9.203837837144389, 48.793270276560357, 0.0 ], [ 9.203846915127249, 48.793260189050727, 0.0 ], [ 9.20385517941377, 48.793250822369409, 0.0 ], [ 9.203866630130717, 48.793255298277558, 0.0 ], [ 9.203949648071637, 48.793287793538859, 0.0 ], [ 9.203959599504014, 48.793291732551538, 0.0 ], [ 9.203928841536843, 48.793325598288327, 0.0 ], [ 9.203921616865475, 48.793322823451035, 0.0 ], [ 9.20372528592352, 48.793540516224816, 0.0 ], [ 9.20377736027565, 48.793561016587482, 0.0 ], [ 9.20378553950855, 48.793564239362389, 0.0 ], [ 9.203679040866078, 48.793682407500221, 0.0 ], [ 9.203654788093425, 48.793709517387917, 0.0 ], [ 9.203595761500205, 48.793686331554738, 0.0 ], [ 9.203440220731544, 48.793625278563596, 0.0 ], [ 9.203468945314382, 48.793593304946796, 0.0 ], [ 9.203478429553714, 48.793582677207539, 0.0 ], [ 9.203488184902211, 48.793571779217707, 0.0 ], [ 9.203569346238877, 48.793481712201505, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d2d", "Latitude": 48.79364, "Longitude": 9.20387, "X_coordina": 3515051.02, "Y_coordina": 5406261.97, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 437.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 273.6, "Total_wall": 283.9, "Total_wa00": 0.0, "Total_outw": 466.7, "Total_shar": 131.5, "Total_roof": 273.6, "Gross_volu": 1537.8, "Is_Gross_v": "false", "Heated_vol": 1368.1, "Ridge_mean": 5.6, "Eaves_mean": 5.62, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.563, "Heated_are": 437.8, "Mean_Uvalu": 0.4, "Specific_d": "14,6", "Specific_s": 64.7, "Total_Year": 34720.0, "January_He": 6486.0, "February_H": 4742.0, "March_Heat": 3305.0, "April_Heat": 1117.0, "May_Heatin": 126.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 264.0, "October_He": 1769.0, "November_H": 4214.0, "December_H": 6297.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203679040866078, 48.793682407500221, 0.0 ], [ 9.20378553950855, 48.793564239362389, 0.0 ], [ 9.20377736027565, 48.793561016587482, 0.0 ], [ 9.203799489547182, 48.793547309043731, 0.0 ], [ 9.203968745932068, 48.793667866663192, 0.0 ], [ 9.203912679252429, 48.793703395841561, 0.0 ], [ 9.203920540418842, 48.793762461707196, 0.0 ], [ 9.203852839296655, 48.793781825214758, 0.0 ], [ 9.203812299165966, 48.793752851658269, 0.0 ], [ 9.203824358018627, 48.793739431703486, 0.0 ], [ 9.203679040866078, 48.793682407500221, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d2e", "Latitude": 48.79338, "Longitude": 9.20352, "X_coordina": 3515025.25, "Y_coordina": 5406232.26, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 577.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 211.5, "Total_wall": 273.2, "Total_wa00": 0.0, "Total_outw": 328.1, "Total_shar": 384.5, "Total_roof": 211.5, "Gross_volu": 1448.8, "Is_Gross_v": "false", "Heated_vol": 1448.8, "Ridge_mean": 6.8, "Eaves_mean": 6.84, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.481, "Heated_are": 577.1, "Mean_Uvalu": 0.41, "Specific_d": "14,6", "Specific_s": 43.0, "Total_Year": 33258.0, "January_He": 5851.0, "February_H": 4255.0, "March_Heat": 2871.0, "April_Heat": 870.0, "May_Heatin": 77.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 152.0, "October_He": 1379.0, "November_H": 3686.0, "December_H": 5685.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203579237286162, 48.793470724040311, 0.0 ], [ 9.203439919111529, 48.793416026940704, 0.0 ], [ 9.203387212556192, 48.793474750211146, 0.0 ], [ 9.20333255978592, 48.793456052696051, 0.0 ], [ 9.203307579919366, 48.793471653578074, 0.0 ], [ 9.203275819158019, 48.793459569963424, 0.0 ], [ 9.20333962838045, 48.793386529291439, 0.0 ], [ 9.203341819451083, 48.793389852594863, 0.0 ], [ 9.203372542426091, 48.793380895907511, 0.0 ], [ 9.203371444164077, 48.793378559834096, 0.0 ], [ 9.203391041696269, 48.793378255452204, 0.0 ], [ 9.20347256023461, 48.793410214163245, 0.0 ], [ 9.203489769864634, 48.793391569574318, 0.0 ], [ 9.203488537677311, 48.793389773280111, 0.0 ], [ 9.20351909142695, 48.79337263380733, 0.0 ], [ 9.203511421733504, 48.793360777449635, 0.0 ], [ 9.203537115817088, 48.793353538153404, 0.0 ], [ 9.203538754915895, 48.79332134261599, 0.0 ], [ 9.203668391527318, 48.793371560541317, 0.0 ], [ 9.203579237286162, 48.793470724040311, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d2f", "Latitude": 48.79362, "Longitude": 9.20352, "X_coordina": 3515025.77, "Y_coordina": 5406259.16, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 241.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 88.0, "Total_wall": 227.1, "Total_wa00": 0.0, "Total_outw": 291.7, "Total_shar": 143.3, "Total_roof": 88.0, "Gross_volu": 563.5, "Is_Gross_v": "false", "Heated_vol": 563.5, "Ridge_mean": 6.4, "Eaves_mean": 6.4, "Storey_num": 3, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.715, "Heated_are": 241.6, "Mean_Uvalu": 0.49, "Specific_d": "14,6", "Specific_s": 52.4, "Total_Year": 16194.0, "January_He": 3057.0, "February_H": 2160.0, "March_Heat": 1381.0, "April_Heat": 366.0, "May_Heatin": 31.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 680.0, "November_H": 1931.0, "December_H": 2991.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203595761500205, 48.793686331554738, 0.0 ], [ 9.203572728873301, 48.793712270261551, 0.0 ], [ 9.203364703992415, 48.793630357743844, 0.0 ], [ 9.203378764654813, 48.793573411291248, 0.0 ], [ 9.203425696602915, 48.793567573287653, 0.0 ], [ 9.203436638211439, 48.793580772724177, 0.0 ], [ 9.203468945314382, 48.793593304946796, 0.0 ], [ 9.203440220731544, 48.793625278563596, 0.0 ], [ 9.203595761500205, 48.793686331554738, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d31", "Latitude": 48.79315, "Longitude": 9.20377, "X_coordina": 3515044.1, "Y_coordina": 5406206.82, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 7153.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1374.6, "Total_wall": 2488.9, "Total_wa00": 0.0, "Total_outw": 2807.1, "Total_shar": 3377.8, "Total_roof": 2121.8, "Gross_volu": 22606.8, "Is_Gross_v": "false", "Heated_vol": 22354.4, "Ridge_mean": 20.6, "Eaves_mean": 20.58, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.266, "Heated_are": 7153.4, "Mean_Uvalu": 0.39, "Specific_d": "14,6", "Specific_s": 52.8, "Total_Year": 481856.0, "January_He": 80116.0, "February_H": 62324.0, "March_Heat": 48290.0, "April_Heat": 21679.0, "May_Heatin": 3667.0, "June_Heati": 156, "July_Heati": 17, "August_Hea": 33, "September_": 5474.0, "October_He": 25316.0, "November_H": 53435.0, "December_H": 76840.0, "PV_potenti": 83.63 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204146408183144, 48.793344096756343, 0.0 ], [ 9.203963468438532, 48.793272482053588, 0.0 ], [ 9.203949648071637, 48.793287793538859, 0.0 ], [ 9.203866630130717, 48.793255298277558, 0.0 ], [ 9.20385517941377, 48.793250822369409, 0.0 ], [ 9.203837837144389, 48.793270276560357, 0.0 ], [ 9.203815344742949, 48.793261503860435, 0.0 ], [ 9.203816835664369, 48.793259972520879, 0.0 ], [ 9.203770623062008, 48.793241709892364, 0.0 ], [ 9.203752331695707, 48.793262064985669, 0.0 ], [ 9.203602247372038, 48.79320379018543, 0.0 ], [ 9.203558065636686, 48.793189588426678, 0.0 ], [ 9.203527507445902, 48.793232518000451, 0.0 ], [ 9.203545117238598, 48.793245525794958, 0.0 ], [ 9.203506699889299, 48.793270142828689, 0.0 ], [ 9.203501378120764, 48.79326673513718, 0.0 ], [ 9.203442232727038, 48.793348670095192, 0.0 ], [ 9.203355233000261, 48.793341180254423, 0.0 ], [ 9.20321001270892, 48.793172919818808, 0.0 ], [ 9.203112481275754, 48.793152499383076, 0.0 ], [ 9.203212563066774, 48.793029307360968, 0.0 ], [ 9.203374198438128, 48.793049794367477, 0.0 ], [ 9.203424199503274, 48.793028933705664, 0.0 ], [ 9.203407251418243, 48.793011248697184, 0.0 ], [ 9.203456570838174, 48.792990119454437, 0.0 ], [ 9.203497572273534, 48.793032401014678, 0.0 ], [ 9.203455346789402, 48.793057654226622, 0.0 ], [ 9.203463264626706, 48.793063575193898, 0.0 ], [ 9.203244803817777, 48.793193990461766, 0.0 ], [ 9.203365881248649, 48.79328181188977, 0.0 ], [ 9.203533739775457, 48.793181763110141, 0.0 ], [ 9.203700158461983, 48.793082579897465, 0.0 ], [ 9.20384729494651, 48.793152370007689, 0.0 ], [ 9.204001795881727, 48.793225743826625, 0.0 ], [ 9.204032039233939, 48.793199252715006, 0.0 ], [ 9.203982650719608, 48.79316975535081, 0.0 ], [ 9.20404376889835, 48.79313826374576, 0.0 ], [ 9.204109278063772, 48.793048493845284, 0.0 ], [ 9.204161257554698, 48.793079245492549, 0.0 ], [ 9.204334989640483, 48.793095573220221, 0.0 ], [ 9.20431025443958, 48.793137791266112, 0.0 ], [ 9.204343244502148, 48.793251486058985, 0.0 ], [ 9.204172684157138, 48.793312576921096, 0.0 ], [ 9.204146408183144, 48.793344096756343, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d32", "Latitude": 48.79307, "Longitude": 9.20383, "X_coordina": 3515048.47, "Y_coordina": 5406198.1, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 278.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 92.6, "Total_wall": 311.4, "Total_wa00": 0.0, "Total_outw": 552.6, "Total_shar": 320.5, "Total_roof": 92.6, "Gross_volu": 934.8, "Is_Gross_v": "false", "Heated_vol": 870.6, "Ridge_mean": 10.7, "Eaves_mean": 10.69, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.553, "Heated_are": 278.6, "Mean_Uvalu": 0.53, "Specific_d": "14,6", "Specific_s": 58.8, "Total_Year": 20457.0, "January_He": 4142.0, "February_H": 2709.0, "March_Heat": 1624.0, "April_Heat": 436.0, "May_Heatin": 44.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 83.0, "October_He": 813.0, "November_H": 2421.0, "December_H": 4114.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203732563842411, 48.793052218325457, 0.0 ], [ 9.203744885647712, 48.79303654982261, 0.0 ], [ 9.203784147085392, 48.793052396826326, 0.0 ], [ 9.203780484385213, 48.793055370785943, 0.0 ], [ 9.203850142208809, 48.793082494345967, 0.0 ], [ 9.203854751054481, 48.793077900084853, 0.0 ], [ 9.203897419815151, 48.793094910024692, 0.0 ], [ 9.203862874053803, 48.79313444763708, 0.0 ], [ 9.20384729494651, 48.793152370007689, 0.0 ], [ 9.203700158461983, 48.793082579897465, 0.0 ], [ 9.203718623747532, 48.793071576556557, 0.0 ], [ 9.203676167938513, 48.793039908630099, 0.0 ], [ 9.203684695686002, 48.793028383328718, 0.0 ], [ 9.203726544102809, 48.793044495547129, 0.0 ], [ 9.20372207098506, 48.79304899963946, 0.0 ], [ 9.203732563842411, 48.793052218325457, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d33", "Latitude": 48.7931, "Longitude": 9.20353, "X_coordina": 3515026.04, "Y_coordina": 5406201.62, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 6695.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 489.0, "Total_wall": 3079.1, "Total_wa00": 0.0, "Total_outw": 3243.0, "Total_shar": 1554.0, "Total_roof": 489.0, "Gross_volu": 20924.5, "Is_Gross_v": "false", "Heated_vol": 20924.5, "Ridge_mean": 45.5, "Eaves_mean": 45.5, "Storey_num": 18, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.194, "Heated_are": 6695.8, "Mean_Uvalu": 0.42, "Specific_d": "14,6", "Specific_s": 49.6, "Total_Year": 429988.99999999994, "January_He": 70089.0, "February_H": 55007.0, "March_Heat": 42955.0, "April_Heat": 19578.0, "May_Heatin": 3337.0, "June_Heati": 140, "July_Heati": 15, "August_Hea": 30, "September_": 4898.0, "October_He": 22318.0, "November_H": 46763.0, "December_H": 67033.0, "PV_potenti": 22.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203676167938513, 48.793039908630099, 0.0 ], [ 9.203718623747532, 48.793071576556557, 0.0 ], [ 9.203700158461983, 48.793082579897465, 0.0 ], [ 9.203610954592424, 48.793135702641237, 0.0 ], [ 9.203532612792285, 48.793182421544103, 0.0 ], [ 9.203365881248649, 48.79328181188977, 0.0 ], [ 9.203244803817777, 48.793193990461766, 0.0 ], [ 9.203463264626706, 48.793063575193898, 0.0 ], [ 9.203455346789402, 48.793057654226622, 0.0 ], [ 9.203497572273534, 48.793032401014678, 0.0 ], [ 9.203524048242464, 48.793016617599015, 0.0 ], [ 9.203524457635307, 48.793016886646221, 0.0 ], [ 9.203551611543931, 48.793000472560962, 0.0 ], [ 9.203553386670981, 48.79300190820058, 0.0 ], [ 9.203577417890983, 48.792987388024009, 0.0 ], [ 9.203617741851783, 48.792963127288637, 0.0 ], [ 9.203676979779981, 48.793005106768227, 0.0 ], [ 9.203646293481611, 48.793023055830623, 0.0 ], [ 9.20366226602053, 48.793035077343603, 0.0 ], [ 9.203666611777042, 48.793032731644779, 0.0 ], [ 9.203676167938513, 48.793039908630099, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d34", "Latitude": 48.79276, "Longitude": 9.20378, "X_coordina": 3515044.66, "Y_coordina": 5406163.65, "LOD": "LOD2", "Year_of_co": 2010, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 7665.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 1098.8, "Total_wall": 3595.1, "Total_wa00": 0.0, "Total_outw": 4909.1, "Total_shar": 1036.2, "Total_roof": 1359.3, "Gross_volu": 25038.5, "Is_Gross_v": "false", "Heated_vol": 23953.4, "Ridge_mean": 27.0, "Eaves_mean": 26.99, "Storey_num": 10, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.248, "Heated_are": 7665.1, "Mean_Uvalu": 0.4, "Specific_d": "14,6", "Specific_s": 50.8, "Total_Year": 501378.0, "January_He": 84021.0, "February_H": 65158.0, "March_Heat": 49481.0, "April_Heat": 20649.0, "May_Heatin": 2985.0, "June_Heati": 113, "July_Heati": 12, "August_Hea": 25, "September_": 4890.0, "October_He": 25620.0, "November_H": 55767.0, "December_H": 80671.0, "PV_potenti": 57.56 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204178845558593, 48.792684359854029, 0.0 ], [ 9.20411555878008, 48.792711206327631, 0.0 ], [ 9.203544072602453, 48.792953635700094, 0.0 ], [ 9.203577417890983, 48.792987388024009, 0.0 ], [ 9.203553386670981, 48.79300190820058, 0.0 ], [ 9.203551611543931, 48.793000472560962, 0.0 ], [ 9.203524457635307, 48.793016886646221, 0.0 ], [ 9.203524048242464, 48.793016617599015, 0.0 ], [ 9.203497572273534, 48.793032401014678, 0.0 ], [ 9.203456570838174, 48.792990119454437, 0.0 ], [ 9.203407251418243, 48.793011248697184, 0.0 ], [ 9.203386464380367, 48.793020277770111, 0.0 ], [ 9.203306377362662, 48.792938229033489, 0.0 ], [ 9.203288883858463, 48.792920275199471, 0.0 ], [ 9.203304916082429, 48.792913412704415, 0.0 ], [ 9.203522712405784, 48.792820946243268, 0.0 ], [ 9.203764557171239, 48.792718455301504, 0.0 ], [ 9.203759772195966, 48.792713158276463, 0.0 ], [ 9.203860858814981, 48.792670625361858, 0.0 ], [ 9.203811792533799, 48.792619725537506, 0.0 ], [ 9.203813830383913, 48.792618822694948, 0.0 ], [ 9.203970214441666, 48.79255281166904, 0.0 ], [ 9.204027006967767, 48.792528791388897, 0.0 ], [ 9.204178845558593, 48.792684359854029, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d35", "Latitude": 48.79264, "Longitude": 9.20366, "X_coordina": 3515035.81, "Y_coordina": 5406150.14, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1799.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 788.4, "Total_wall": 1112.7, "Total_wa00": 0.0, "Total_outw": 2425.3, "Total_shar": 473.1, "Total_roof": 788.4, "Gross_volu": 5644.1, "Is_Gross_v": "false", "Heated_vol": 5622.0, "Ridge_mean": 10.0, "Eaves_mean": 10.03, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.477, "Heated_are": 1799.1, "Mean_Uvalu": 0.43, "Specific_d": "32,9", "Specific_s": 8.6, "Total_Year": 74589.0, "January_He": 5439.0, "February_H": 2609.0, "March_Heat": 636.0, "April_Heat": 25.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 58.0, "November_H": 1529.0, "December_H": 5177.0, "PV_potenti": 36.94 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203718922095986, 48.792405691875544, 0.0 ], [ 9.203880446895456, 48.79243292263898, 0.0 ], [ 9.203885237686302, 48.792439658426417, 0.0 ], [ 9.203936171513607, 48.792447661361351, 0.0 ], [ 9.203937025645462, 48.792456921978555, 0.0 ], [ 9.203955824444865, 48.792461115094554, 0.0 ], [ 9.203965740437987, 48.792523504503322, 0.0 ], [ 9.203957448225927, 48.792525947126876, 0.0 ], [ 9.203970214441666, 48.79255281166904, 0.0 ], [ 9.203813830383913, 48.792618822694948, 0.0 ], [ 9.203802623607443, 48.792607332309494, 0.0 ], [ 9.203728763769767, 48.792584262713973, 0.0 ], [ 9.203679064589823, 48.79261231686268, 0.0 ], [ 9.203680336803451, 48.792624004678935, 0.0 ], [ 9.203653422947937, 48.79263241517183, 0.0 ], [ 9.203486631810666, 48.792783871563287, 0.0 ], [ 9.203522712405784, 48.792820946243268, 0.0 ], [ 9.203304916082429, 48.792913412704415, 0.0 ], [ 9.203290581593269, 48.792902557256596, 0.0 ], [ 9.203287324632539, 48.792904901019263, 0.0 ], [ 9.203255989969815, 48.792897132977828, 0.0 ], [ 9.203294417192462, 48.792841312524992, 0.0 ], [ 9.203302996584874, 48.792842556309274, 0.0 ], [ 9.20336768410885, 48.792852333684735, 0.0 ], [ 9.203372143430196, 48.792844412534173, 0.0 ], [ 9.203330647271319, 48.792814361408986, 0.0 ], [ 9.203325596672896, 48.792810683459543, 0.0 ], [ 9.203334913445579, 48.792792322598018, 0.0 ], [ 9.203339276275361, 48.79279420328978, 0.0 ], [ 9.203346365465638, 48.792797158250238, 0.0 ], [ 9.203530093497424, 48.792626878099547, 0.0 ], [ 9.203517546883392, 48.792620605622496, 0.0 ], [ 9.203564860806702, 48.792574840813046, 0.0 ], [ 9.203580953275502, 48.79258290548831, 0.0 ], [ 9.203595729168022, 48.792568311744766, 0.0 ], [ 9.203596146586507, 48.792536927674306, 0.0 ], [ 9.203615869700583, 48.792534105171605, 0.0 ], [ 9.203614315481344, 48.792519989916158, 0.0 ], [ 9.203622072045448, 48.792519706430603, 0.0 ], [ 9.203669500040251, 48.79246854596024, 0.0 ], [ 9.203665001127348, 48.792466665521538, 0.0 ], [ 9.203718922095986, 48.792405691875544, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d36", "Latitude": 48.79315, "Longitude": 9.20344, "X_coordina": 3515019.94, "Y_coordina": 5406207.14, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1575.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 492.5, "Total_wall": 1158.3, "Total_wa00": 0.0, "Total_outw": 1846.3, "Total_shar": 2183.6, "Total_roof": 492.5, "Gross_volu": 5333.6, "Is_Gross_v": "false", "Heated_vol": 4923.5, "Ridge_mean": 10.8, "Eaves_mean": 10.83, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.42, "Heated_are": 1575.5, "Mean_Uvalu": 0.49, "Specific_d": "32,9", "Specific_s": 10.8, "Total_Year": 68864.0, "January_He": 5654.0, "February_H": 3165.0, "March_Heat": 979.0, "April_Heat": 49.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 92.0, "November_H": 1876.0, "December_H": 5277.0, "PV_potenti": 23.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203287027150649, 48.793302903309794, 0.0 ], [ 9.203257932702147, 48.793310688093584, 0.0 ], [ 9.203241360921547, 48.793285089122598, 0.0 ], [ 9.203223283328029, 48.7932573346406, 0.0 ], [ 9.203199433295334, 48.793249373528518, 0.0 ], [ 9.203198895790131, 48.793251083024927, 0.0 ], [ 9.203168660990395, 48.793246100650379, 0.0 ], [ 9.203178335369953, 48.793215149871067, 0.0 ], [ 9.203099638796514, 48.793174103692479, 0.0 ], [ 9.203059454891346, 48.793165721739562, 0.0 ], [ 9.20307700829478, 48.793131070208169, 0.0 ], [ 9.20304553923693, 48.793123751964707, 0.0 ], [ 9.203048373405865, 48.793117812011239, 0.0 ], [ 9.203056067650115, 48.793102061817926, 0.0 ], [ 9.203061514948176, 48.793102861524922, 0.0 ], [ 9.20306009116082, 48.793087307256151, 0.0 ], [ 9.203059379086039, 48.79307948516027, 0.0 ], [ 9.203069308633657, 48.79307802887373, 0.0 ], [ 9.203122220239308, 48.793070112206195, 0.0 ], [ 9.203121797394569, 48.793032794665983, 0.0 ], [ 9.203121773073871, 48.793026769828941, 0.0 ], [ 9.20313304873158, 48.793021624295712, 0.0 ], [ 9.203190651890136, 48.792995894451806, 0.0 ], [ 9.203193012371324, 48.792973769085677, 0.0 ], [ 9.203195381202359, 48.792953711947106, 0.0 ], [ 9.203215507356022, 48.792949539948253, 0.0 ], [ 9.203232097802081, 48.792946093574415, 0.0 ], [ 9.203229367441216, 48.792944030150529, 0.0 ], [ 9.203256277175418, 48.792934540681443, 0.0 ], [ 9.203271868900071, 48.792953397113095, 0.0 ], [ 9.203306377362662, 48.792938229033489, 0.0 ], [ 9.203386464380367, 48.793020277770111, 0.0 ], [ 9.203407251418243, 48.793011248697184, 0.0 ], [ 9.203424199503274, 48.793028933705664, 0.0 ], [ 9.203374198438128, 48.793049794367477, 0.0 ], [ 9.203212563066774, 48.793029307360968, 0.0 ], [ 9.203112481275754, 48.793152499383076, 0.0 ], [ 9.20321001270892, 48.793172919818808, 0.0 ], [ 9.203355233000261, 48.793341180254423, 0.0 ], [ 9.203442232727038, 48.793348670095192, 0.0 ], [ 9.203501378120764, 48.79326673513718, 0.0 ], [ 9.203506699889299, 48.793270142828689, 0.0 ], [ 9.203545117238598, 48.793245525794958, 0.0 ], [ 9.203527507445902, 48.793232518000451, 0.0 ], [ 9.203557686663693, 48.793190110653313, 0.0 ], [ 9.203602247372038, 48.79320379018543, 0.0 ], [ 9.203603337636045, 48.793204147952146, 0.0 ], [ 9.203752331695707, 48.793262064985669, 0.0 ], [ 9.203741628124689, 48.793274043758991, 0.0 ], [ 9.203626713539112, 48.793229465069693, 0.0 ], [ 9.20360914739519, 48.793227248039848, 0.0 ], [ 9.203583411182992, 48.793224056291713, 0.0 ], [ 9.203541680457251, 48.793270710471255, 0.0 ], [ 9.203539639605255, 48.793304525343451, 0.0 ], [ 9.203538754915895, 48.79332134261599, 0.0 ], [ 9.203537115817088, 48.793353538153404, 0.0 ], [ 9.203511421733504, 48.793360777449635, 0.0 ], [ 9.20351909142695, 48.79337263380733, 0.0 ], [ 9.203488537677311, 48.793389773280111, 0.0 ], [ 9.203489769864634, 48.793391569574318, 0.0 ], [ 9.20347256023461, 48.793410214163245, 0.0 ], [ 9.203391041696269, 48.793378255452204, 0.0 ], [ 9.203371444164077, 48.793378559834096, 0.0 ], [ 9.203372542426091, 48.793380895907511, 0.0 ], [ 9.203341819451083, 48.793389852594863, 0.0 ], [ 9.20333962838045, 48.793386529291439, 0.0 ], [ 9.203308268918207, 48.793339015088002, 0.0 ], [ 9.203313287594437, 48.793334779819496, 0.0 ], [ 9.203296278408821, 48.793301987742588, 0.0 ], [ 9.203286063179187, 48.793300117380589, 0.0 ], [ 9.203287027150649, 48.793302903309794, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d38", "Latitude": 48.79333, "Longitude": 9.20318, "X_coordina": 3515000.71, "Y_coordina": 5406226.88, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 2766.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 889.3, "Total_wall": 1204.9, "Total_wa00": 0.0, "Total_outw": 1554.5, "Total_shar": 464.2, "Total_roof": 889.3, "Gross_volu": 7240.3, "Is_Gross_v": "false", "Heated_vol": 7240.3, "Ridge_mean": 9.5, "Eaves_mean": 9.48, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.412, "Heated_are": 2766.6, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 3.8, "Total_Year": 101424.0, "January_He": 4040.0, "February_H": 1742.0, "March_Heat": 296.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 13.0, "November_H": 779.0, "December_H": 3637.0, "PV_potenti": 40.19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203223283328029, 48.7932573346406, 0.0 ], [ 9.203241360921547, 48.793285089122598, 0.0 ], [ 9.203191388576276, 48.793313143539599, 0.0 ], [ 9.203167353458756, 48.793326764405933, 0.0 ], [ 9.203200434318234, 48.793429848379965, 0.0 ], [ 9.203232744171252, 48.793443100052862, 0.0 ], [ 9.203275819158019, 48.793459569963424, 0.0 ], [ 9.203307579919366, 48.793471653578074, 0.0 ], [ 9.20333255978592, 48.793456052696051, 0.0 ], [ 9.203387212556192, 48.793474750211146, 0.0 ], [ 9.203412698855391, 48.793483427782419, 0.0 ], [ 9.203394895373235, 48.793557196558929, 0.0 ], [ 9.203385916274074, 48.79355811165334, 0.0 ], [ 9.203314761799108, 48.793564891644351, 0.0 ], [ 9.203281232871415, 48.793586802263647, 0.0 ], [ 9.203251930598688, 48.793576872468584, 0.0 ], [ 9.203196325053263, 48.793558176570848, 0.0 ], [ 9.203128977416608, 48.79356396057068, 0.0 ], [ 9.203086700853087, 48.793509271678765, 0.0 ], [ 9.203082322364631, 48.793503524291616, 0.0 ], [ 9.203090200304453, 48.793499553761315, 0.0 ], [ 9.203081314849101, 48.793489947608705, 0.0 ], [ 9.20303742216751, 48.793506930636745, 0.0 ], [ 9.20296061399209, 48.793461744551379, 0.0 ], [ 9.202979019362541, 48.793435814121914, 0.0 ], [ 9.202956642826331, 48.793422005330257, 0.0 ], [ 9.202981406507977, 48.793386531795072, 0.0 ], [ 9.202960392459238, 48.793373080296753, 0.0 ], [ 9.202946257484671, 48.793377961081106, 0.0 ], [ 9.20286345532454, 48.793331346715959, 0.0 ], [ 9.202908368670659, 48.793263734981323, 0.0 ], [ 9.20291594501122, 48.793252481184403, 0.0 ], [ 9.202941537841362, 48.793253874862692, 0.0 ], [ 9.202974823225066, 48.793205347391073, 0.0 ], [ 9.203046431262534, 48.793209897180617, 0.0 ], [ 9.203054143665218, 48.793198643134609, 0.0 ], [ 9.203007409900348, 48.793152324962172, 0.0 ], [ 9.202997297800167, 48.793142271347008, 0.0 ], [ 9.20302834952874, 48.79311362090754, 0.0 ], [ 9.203048373405865, 48.793117812011239, 0.0 ], [ 9.20304553923693, 48.793123751964707, 0.0 ], [ 9.20307700829478, 48.793131070208169, 0.0 ], [ 9.203059454891346, 48.793165721739562, 0.0 ], [ 9.203099638796514, 48.793174103692479, 0.0 ], [ 9.203178335369953, 48.793215149871067, 0.0 ], [ 9.203168660990395, 48.793246100650379, 0.0 ], [ 9.203198895790131, 48.793251083024927, 0.0 ], [ 9.203199433295334, 48.793249373528518, 0.0 ], [ 9.203223283328029, 48.7932573346406, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038d39", "Latitude": 48.79336, "Longitude": 9.20324, "X_coordina": 3515005.26, "Y_coordina": 5406229.99, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 21.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 26.9, "Total_wall": 53.8, "Total_wa00": 0.0, "Total_outw": 225.8, "Total_shar": 106.1, "Total_roof": 26.9, "Gross_volu": 85.2, "Is_Gross_v": "false", "Heated_vol": 67.5, "Ridge_mean": 3.2, "Eaves_mean": 3.16, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 1.428, "Heated_are": 21.6, "Mean_Uvalu": 0.47, "Specific_d": "32,9", "Specific_s": 45.7, "Total_Year": 1696.0, "January_He": 309.0, "February_H": 161.0, "March_Heat": 62.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 14.0, "November_H": 132.0, "December_H": 303.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203232744171252, 48.793443100052862, 0.0 ], [ 9.203200434318234, 48.793429848379965, 0.0 ], [ 9.203167353458756, 48.793326764405933, 0.0 ], [ 9.203191388576276, 48.793313143539599, 0.0 ], [ 9.203232744171252, 48.793443100052862, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038bae", "Latitude": 48.78989, "Longitude": 9.20677, "X_coordina": 3515265.17, "Y_coordina": 5405844.6, "LOD": "LOD2", "Year_of_co": 2001, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 844.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 184.3, "Total_wall": 705.1, "Total_wa00": 0.0, "Total_outw": 1047.3, "Total_shar": 69.7, "Total_roof": 233.4, "Gross_volu": 2822.1, "Is_Gross_v": "false", "Heated_vol": 2637.8, "Ridge_mean": 17.3, "Eaves_mean": 13.65, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 14, "Number_o00": 22, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.417, "Heated_are": 844.1, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 36.8, "Total_Year": 44434.0, "January_He": 7821.0, "February_H": 5369.0, "March_Heat": 3206.0, "April_Heat": 607.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 60.0, "October_He": 1471.0, "November_H": 4836.0, "December_H": 7676.0, "PV_potenti": 9.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20665382052316, 48.789830535682739, 0.0 ], [ 9.20665408864515, 48.789829546041645, 0.0 ], [ 9.20681963592617, 48.789843726552107, 0.0 ], [ 9.206811368213733, 48.789885106270511, 0.0 ], [ 9.20680959753858, 48.789884749755885, 0.0 ], [ 9.206798131590347, 48.789942681164533, 0.0 ], [ 9.206799902267452, 48.78994303767935, 0.0 ], [ 9.206791901164811, 48.789983068062448, 0.0 ], [ 9.206626624141085, 48.789968527333002, 0.0 ], [ 9.206637161278245, 48.789916352720681, 0.0 ], [ 9.206657583226448, 48.789918294394454, 0.0 ], [ 9.206664242338434, 48.789882852533772, 0.0 ], [ 9.206644637695238, 48.789881089241831, 0.0 ], [ 9.206647565255716, 48.789864897734908, 0.0 ], [ 9.20665382052316, 48.789830535682739, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038ba9", "Latitude": 48.7899, "Longitude": 9.2065, "X_coordina": 3515245.78, "Y_coordina": 5405846.71, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 533.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 125.2, "Total_wall": 554.6, "Total_wa00": 0.0, "Total_outw": 865.0, "Total_shar": 112.3, "Total_roof": 148.6, "Gross_volu": 1792.7, "Is_Gross_v": "false", "Heated_vol": 1667.4, "Ridge_mean": 15.6, "Eaves_mean": 12.02, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.487, "Heated_are": 533.6, "Mean_Uvalu": 0.6, "Specific_d": "15,8", "Specific_s": 50.8, "Total_Year": 35569.0, "January_He": 6723.0, "February_H": 4633.0, "March_Heat": 2803.0, "April_Heat": 605.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 82.0, "October_He": 1402.0, "November_H": 4225.0, "December_H": 6617.0, "PV_potenti": 7.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206442477999563, 48.789998802161612, 0.0 ], [ 9.206395236238846, 48.789994570506522, 0.0 ], [ 9.20640427033668, 48.789940869907859, 0.0 ], [ 9.206398277852873, 48.789939801564685, 0.0 ], [ 9.206404957066299, 48.789909215559156, 0.0 ], [ 9.206411763886516, 48.789909742900576, 0.0 ], [ 9.206417495975966, 48.789880507446249, 0.0 ], [ 9.206399657588541, 48.789878021557634, 0.0 ], [ 9.206402447660359, 48.789861470608841, 0.0 ], [ 9.206421718506167, 48.789848217293873, 0.0 ], [ 9.206473997380114, 48.789852889525214, 0.0 ], [ 9.206523280763482, 48.789857207410378, 0.0 ], [ 9.206491898353434, 48.790003299661805, 0.0 ], [ 9.206442477999563, 48.789998802161612, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038baa", "Latitude": 48.78993, "Longitude": 9.20631, "X_coordina": 3515231.74, "Y_coordina": 5405849.42, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 90.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 55.8, "Total_wall": 88.4, "Total_wa00": 0.0, "Total_outw": 232.5, "Total_shar": 100.5, "Total_roof": 55.8, "Gross_volu": 202.8, "Is_Gross_v": "false", "Heated_vol": 202.8, "Ridge_mean": 4.1, "Eaves_mean": 4.13, "Storey_num": 2, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.986, "Heated_are": 90.0, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206226980114401, 48.789950449669121, 0.0 ], [ 9.206281530336481, 48.789911594883179, 0.0 ], [ 9.206310719307913, 48.789927459076672, 0.0 ], [ 9.206340704203797, 48.78993828611334, 0.0 ], [ 9.206338136149059, 48.789942607048964, 0.0 ], [ 9.206348223935443, 48.789946725460574, 0.0 ], [ 9.206336561664823, 48.789956907727195, 0.0 ], [ 9.206327984115552, 48.78998920567868, 0.0 ], [ 9.206321177285453, 48.789988678332321, 0.0 ], [ 9.206192526528362, 48.789978297764939, 0.0 ], [ 9.206188442284633, 48.789977945383185, 0.0 ], [ 9.206226980114401, 48.789950449669121, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038b24", "Latitude": 48.79071, "Longitude": 9.20639, "X_coordina": 3515236.99, "Y_coordina": 5405936.69, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 418.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 167.7, "Total_wall": 331.1, "Total_wa00": 0.0, "Total_outw": 652.0, "Total_shar": 0.0, "Total_roof": 279.9, "Gross_volu": 1474.2, "Is_Gross_v": "false", "Heated_vol": 1306.5, "Ridge_mean": 12.1, "Eaves_mean": 5.48, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.562, "Heated_are": 418.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 50.4, "Total_Year": 27712.0, "January_He": 5204.0, "February_H": 3598.0, "March_Heat": 2202.0, "April_Heat": 473.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 64.0, "October_He": 1097.0, "November_H": 3308.0, "December_H": 5125.0, "PV_potenti": 13.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206340883136454, 48.790811713945175, 0.0 ], [ 9.206272557020329, 48.790810217725507, 0.0 ], [ 9.206279142300682, 48.790657066009018, 0.0 ], [ 9.206348147942606, 48.790658381159957, 0.0 ], [ 9.206413342951164, 48.790659703099884, 0.0 ], [ 9.206405806522989, 48.790813126299653, 0.0 ], [ 9.206340883136454, 48.790811713945175, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038af9", "Latitude": 48.79415, "Longitude": 9.20307, "X_coordina": 3514992.51, "Y_coordina": 5406317.63, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 475.7, "SecondaryU": "retail", "Secondar00": 106.8, "BuildingTy": "GMH", "Footprint_": 133.5, "Total_wall": 376.3, "Total_wa00": 0.0, "Total_outw": 559.2, "Total_shar": 333.6, "Total_roof": 154.6, "Gross_volu": 1953.9, "Is_Gross_v": "false", "Heated_vol": 1820.4, "Ridge_mean": 16.2, "Eaves_mean": 13.07, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 9, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.355, "Heated_are": 582.5, "Mean_Uvalu": 0.47, "Specific_d": "26,3", "Specific_s": 39.0, "Total_Year": 38061.0, "January_He": 5560.0, "February_H": 3930.0, "March_Heat": 2484.0, "April_Heat": 549.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 1213.0, "November_H": 3493.0, "December_H": 5410.0, "PV_potenti": 7.35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203033252850107, 48.794092700117154, 0.0 ], [ 9.203034208114433, 48.794093327897905, 0.0 ], [ 9.203086871089321, 48.794124708284109, 0.0 ], [ 9.203140216100252, 48.794156447137212, 0.0 ], [ 9.203049840689699, 48.79422341973175, 0.0 ], [ 9.203046568028824, 48.79422189680156, 0.0 ], [ 9.203021871149875, 48.794240284750991, 0.0 ], [ 9.202971936336809, 48.7942104282278, 0.0 ], [ 9.202918863581836, 48.794178688817361, 0.0 ], [ 9.202933246691853, 48.794167782721054, 0.0 ], [ 9.203029588941504, 48.794095404283773, 0.0 ], [ 9.203033252850107, 48.794092700117154, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038afb", "Latitude": 48.79411, "Longitude": 9.203, "X_coordina": 3514986.93, "Y_coordina": 5406313.12, "LOD": "LOD2", "Year_of_co": 1991, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 136.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 50.0, "Total_wall": 130.4, "Total_wa00": 0.0, "Total_outw": 233.3, "Total_shar": 129.3, "Total_roof": 50.0, "Gross_volu": 336.8, "Is_Gross_v": "false", "Heated_vol": 336.8, "Ridge_mean": 6.7, "Eaves_mean": 6.74, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.684, "Heated_are": 136.4, "Mean_Uvalu": 0.47, "Specific_d": "32,9", "Specific_s": 7.5, "Total_Year": 5506.0, "January_He": 366.0, "February_H": 160.0, "March_Heat": 37.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 3.0, "November_H": 93.0, "December_H": 363.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202968037519309, 48.794087419664443, 0.0 ], [ 9.203029588941504, 48.794095404283773, 0.0 ], [ 9.202933246691853, 48.794167782721054, 0.0 ], [ 9.20287731184238, 48.794135059175616, 0.0 ], [ 9.202944751495135, 48.79408440330274, 0.0 ], [ 9.202968037519309, 48.794087419664443, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038a6a", "Latitude": 48.78794, "Longitude": 9.20862, "X_coordina": 3515402.07, "Y_coordina": 5405629.05, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 204.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 59.5, "Total_wall": 219.4, "Total_wa00": 0.0, "Total_outw": 357.8, "Total_shar": 133.4, "Total_roof": 90.4, "Gross_volu": 694.2, "Is_Gross_v": "false", "Heated_vol": 639.5, "Ridge_mean": 13.9, "Eaves_mean": 9.4, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 3, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.561, "Heated_are": 204.6, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 48.2, "Total_Year": 13113.0, "January_He": 2483.0, "February_H": 1690.0, "March_Heat": 994.0, "April_Heat": 208.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 25.0, "October_He": 473.0, "November_H": 1524.0, "December_H": 2465.0, "PV_potenti": 3.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208568743156365, 48.787916026091651, 0.0 ], [ 9.208651655756187, 48.787957330704984, 0.0 ], [ 9.208616669843703, 48.78798742859145, 0.0 ], [ 9.208586701219977, 48.78801320104386, 0.0 ], [ 9.208504746404966, 48.787973153581341, 0.0 ], [ 9.208534439892533, 48.787946662259003, 0.0 ], [ 9.208568743156365, 48.787916026091651, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000384f9", "Latitude": 48.78771, "Longitude": 9.20656, "X_coordina": 3515250.45, "Y_coordina": 5405602.77, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 570.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 164.4, "Total_wall": 376.7, "Total_wa00": 0.0, "Total_outw": 637.3, "Total_shar": 155.1, "Total_roof": 249.5, "Gross_volu": 1947.9, "Is_Gross_v": "false", "Heated_vol": 1783.5, "Ridge_mean": 14.9, "Eaves_mean": 9.4, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.429, "Heated_are": 570.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.1, "Total_Year": 31931.0, "January_He": 5679.0, "February_H": 3925.0, "March_Heat": 2432.0, "April_Heat": 524.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 60.0, "October_He": 1147.0, "November_H": 3528.0, "December_H": 5579.0, "PV_potenti": 8.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206595925475721, 48.787794768177612, 0.0 ], [ 9.206398477715883, 48.787765267574322, 0.0 ], [ 9.20641111788734, 48.787728196369066, 0.0 ], [ 9.206426581548568, 48.787682757200145, 0.0 ], [ 9.206520948643707, 48.787697065715243, 0.0 ], [ 9.20652618626233, 48.787680060749501, 0.0 ], [ 9.206554311433676, 48.787669129542863, 0.0 ], [ 9.206610277148293, 48.787677392047605, 0.0 ], [ 9.206629138253282, 48.787697141413148, 0.0 ], [ 9.206595925475721, 48.787794768177612, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00038352", "Latitude": 48.79083, "Longitude": 9.21127, "X_coordina": 3515595.81, "Y_coordina": 5405950.67, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 516.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 129.3, "Total_wall": 305.8, "Total_wa00": 0.0, "Total_outw": 451.9, "Total_shar": 287.4, "Total_roof": 186.3, "Gross_volu": 1710.7, "Is_Gross_v": "false", "Heated_vol": 1614.1, "Ridge_mean": 15.7, "Eaves_mean": 10.67, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.376, "Heated_are": 516.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 39.3, "Total_Year": 28456.0, "January_He": 4986.0, "February_H": 3531.0, "March_Heat": 2167.0, "April_Heat": 413.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 1058.0, "November_H": 3186.0, "December_H": 4876.0, "PV_potenti": 8.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211321173936204, 48.790813833254681, 0.0 ], [ 9.21125454099254, 48.790923932089754, 0.0 ], [ 9.211193775895273, 48.790908127062522, 0.0 ], [ 9.211132057418196, 48.790892143903861, 0.0 ], [ 9.211199498474837, 48.79077997541377, 0.0 ], [ 9.21123205751025, 48.790787649128866, 0.0 ], [ 9.211230974416118, 48.79078899996977, 0.0 ], [ 9.21125958634412, 48.790796590993232, 0.0 ], [ 9.211291740513804, 48.790805074746721, 0.0 ], [ 9.211321714915924, 48.790813022949415, 0.0 ], [ 9.211321173936204, 48.790813833254681, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00037f6a", "Latitude": 48.79469, "Longitude": 9.2045, "X_coordina": 3515097.05, "Y_coordina": 5406378.74, "LOD": "LOD2", "Year_of_co": 1948, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 139.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 63.3, "Total_wall": 219.4, "Total_wa00": 0.0, "Total_outw": 390.5, "Total_shar": 56.8, "Total_roof": 84.1, "Gross_volu": 591.5, "Is_Gross_v": "false", "Heated_vol": 528.1, "Ridge_mean": 10.9, "Eaves_mean": 7.67, "Storey_num": 3, "Average_St": 3.3, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.665, "Heated_are": 139.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 64.3, "Total_Year": 11137.0, "January_He": 2229.0, "February_H": 1520.0, "March_Heat": 897.0, "April_Heat": 192.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 30.0, "October_He": 456.0, "November_H": 1396.0, "December_H": 2205.0, "PV_potenti": 3.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204497288496773, 48.794685673350763, 0.0 ], [ 9.204531395912612, 48.794705575807789, 0.0 ], [ 9.204450379753409, 48.79476443975134, 0.0 ], [ 9.204415455698193, 48.79474453872011, 0.0 ], [ 9.204377939828069, 48.794723203501178, 0.0 ], [ 9.204418917184496, 48.794692017219525, 0.0 ], [ 9.204457723752775, 48.794662543324797, 0.0 ], [ 9.204497288496773, 48.794685673350763, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00037ced", "Latitude": 48.78972, "Longitude": 9.20618, "X_coordina": 3515222.37, "Y_coordina": 5405826.17, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 642.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 264.3, "Total_wall": 484.0, "Total_wa00": 0.0, "Total_outw": 761.1, "Total_shar": 62.9, "Total_roof": 264.3, "Gross_volu": 2008.3, "Is_Gross_v": "false", "Heated_vol": 2008.3, "Ridge_mean": 7.6, "Eaves_mean": 7.61, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 8, "Number_o00": 17, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.504, "Heated_are": 642.7, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 40.5, "Total_Year": 36180.0, "January_He": 6405.0, "February_H": 4521.0, "March_Heat": 2778.0, "April_Heat": 576.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 64.0, "October_He": 1324.0, "November_H": 4017.0, "December_H": 6295.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206189002236881, 48.789782450406967, 0.0 ], [ 9.206086806449058, 48.789851334994822, 0.0 ], [ 9.205974942340253, 48.789785890879294, 0.0 ], [ 9.206181716640794, 48.789631841365043, 0.0 ], [ 9.206304905766268, 48.789704458884387, 0.0 ], [ 9.206189002236881, 48.789782450406967, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00037cee", "Latitude": 48.78989, "Longitude": 9.2059, "X_coordina": 3515201.51, "Y_coordina": 5405844.55, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 31.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 34.5, "Total_wall": 56.1, "Total_wa00": 0.0, "Total_outw": 183.4, "Total_shar": 0.0, "Total_roof": 34.5, "Gross_volu": 83.1, "Is_Gross_v": "false", "Heated_vol": 83.1, "Ridge_mean": 2.4, "Eaves_mean": 2.39, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.507, "Heated_are": 31.5, "Mean_Uvalu": 0.35, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205816453774197, 48.789933559076303, 0.0 ], [ 9.205818003414668, 48.789879871899345, 0.0 ], [ 9.205897078793951, 48.789881169322861, 0.0 ], [ 9.205894712684426, 48.789934857960674, 0.0 ], [ 9.205816453774197, 48.789933559076303, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00037a76", "Latitude": 48.7913, "Longitude": 9.20388, "X_coordina": 3515052.83, "Y_coordina": 5406001.77, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 114.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 51.2, "Total_wall": 79.0, "Total_wa00": 0.0, "Total_outw": 169.0, "Total_shar": 221.4, "Total_roof": 64.1, "Gross_volu": 409.6, "Is_Gross_v": "false", "Heated_vol": 358.4, "Ridge_mean": 9.5, "Eaves_mean": 6.14, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.508, "Heated_are": 114.7, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.4, "Total_Year": 7142.0, "January_He": 1341.0, "February_H": 926.0, "March_Heat": 523.0, "April_Heat": 84.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 260.0, "November_H": 858.0, "December_H": 1321.0, "PV_potenti": 2.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203797802708262, 48.791282586391681, 0.0 ], [ 9.203848917709379, 48.791302009344314, 0.0 ], [ 9.203850008298192, 48.791302457031833, 0.0 ], [ 9.203901395895894, 48.791321969402169, 0.0 ], [ 9.203900450146916, 48.791323679625293, 0.0 ], [ 9.203898135786394, 48.791323503875873, 0.0 ], [ 9.203879804159318, 48.791367329129081, 0.0 ], [ 9.203831186524448, 48.791359681762621, 0.0 ], [ 9.203776848863924, 48.79135105533787, 0.0 ], [ 9.203801491136067, 48.791285996961271, 0.0 ], [ 9.203793582279344, 48.791282234166133, 0.0 ], [ 9.203797802708262, 48.791282586391681, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00037719", "Latitude": 48.78999, "Longitude": 9.19719, "X_coordina": 3514561.24, "Y_coordina": 5405853.95, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1363.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 204.6, "Total_wall": 967.0, "Total_wa00": 0.0, "Total_outw": 1240.7, "Total_shar": 256.7, "Total_roof": 228.0, "Gross_volu": 4402.1, "Is_Gross_v": "false", "Heated_vol": 4260.3, "Ridge_mean": 23.2, "Eaves_mean": 19.75, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 25, "Number_o00": 39, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.325, "Heated_are": 1363.3, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 34.5, "Total_Year": 68643.0, "January_He": 11878.0, "February_H": 8201.0, "March_Heat": 4860.0, "April_Heat": 890.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 81.0, "October_He": 2156.0, "November_H": 7245.0, "December_H": 11712.0, "PV_potenti": 10.94 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197242499501044, 48.790016725924076, 0.0 ], [ 9.197262959907404, 48.790028560795662, 0.0 ], [ 9.19724803413872, 48.790039916739794, 0.0 ], [ 9.197239621070905, 48.790046225803984, 0.0 ], [ 9.197196064318806, 48.790079212447658, 0.0 ], [ 9.197169875944006, 48.790099040488322, 0.0 ], [ 9.197013143833406, 48.790006957175059, 0.0 ], [ 9.197083033894428, 48.789956390427399, 0.0 ], [ 9.197140031691486, 48.789915197765929, 0.0 ], [ 9.197273705599715, 48.789992393089427, 0.0 ], [ 9.197242499501044, 48.790016725924076, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000376af", "Latitude": 48.7903, "Longitude": 9.19877, "X_coordina": 3514677.47, "Y_coordina": 5405888.58, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 1767.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 252.0, "Total_wall": 851.7, "Total_wa00": 0.0, "Total_outw": 1025.6, "Total_shar": 524.2, "Total_roof": 252.0, "Gross_volu": 4831.3, "Is_Gross_v": "false", "Heated_vol": 4831.3, "Ridge_mean": 19.7, "Eaves_mean": 19.71, "Storey_num": 8, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.281, "Heated_are": 1767.2, "Mean_Uvalu": 0.38, "Specific_d": "14,6", "Specific_s": 41.8, "Total_Year": 99733.0, "January_He": 16567.0, "February_H": 12679.0, "March_Heat": 9205.0, "April_Heat": 3309.0, "May_Heatin": 328.0, "June_Heati": 9, "July_Heati": 1, "August_Hea": 2, "September_": 637.0, "October_He": 4516.0, "November_H": 10776.0, "December_H": 15886.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198758117280001, 48.790209613913156, 0.0 ], [ 9.198860016851, 48.790269686818718, 0.0 ], [ 9.198881842580951, 48.790282508204534, 0.0 ], [ 9.19869390345351, 48.790422124324799, 0.0 ], [ 9.198671395822812, 48.790408944385639, 0.0 ], [ 9.198571134992184, 48.790350307266955, 0.0 ], [ 9.198758117280001, 48.790209613913156, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00037537", "Latitude": 48.78852, "Longitude": 9.21063, "X_coordina": 3515549.57, "Y_coordina": 5405693.28, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 106.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.2, "Total_wall": 74.2, "Total_wa00": 0.0, "Total_outw": 160.0, "Total_shar": 192.4, "Total_roof": 62.8, "Gross_volu": 378.3, "Is_Gross_v": "false", "Heated_vol": 331.2, "Ridge_mean": 9.7, "Eaves_mean": 6.33, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.522, "Heated_are": 106.0, "Mean_Uvalu": 0.64, "Specific_d": "15,8", "Specific_s": 59.4, "Total_Year": 7975.0, "January_He": 1568.0, "February_H": 1074.0, "March_Heat": 631.0, "April_Heat": 126.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 20.0, "October_He": 332.0, "November_H": 1004.0, "December_H": 1535.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21063785401954, 48.788509083419662, 0.0 ], [ 9.210642574893031, 48.788564018136583, 0.0 ], [ 9.210589916555413, 48.788566002839488, 0.0 ], [ 9.21053780256751, 48.788567986523141, 0.0 ], [ 9.210534078438236, 48.788523571047179, 0.0 ], [ 9.210533217896229, 48.788513051553004, 0.0 ], [ 9.210585195739155, 48.788511068120336, 0.0 ], [ 9.21063785401954, 48.788509083419662, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00037370", "Latitude": 48.79019, "Longitude": 9.20787, "X_coordina": 3515346.3, "Y_coordina": 5405879.14, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 811.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 225.0, "Total_wall": 541.6, "Total_wa00": 0.0, "Total_outw": 830.9, "Total_shar": 133.5, "Total_roof": 225.0, "Gross_volu": 2202.9, "Is_Gross_v": "false", "Heated_vol": 2202.9, "Ridge_mean": 9.8, "Eaves_mean": 9.79, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 10, "Number_o00": 19, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.45, "Heated_are": 811.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 36.3, "Total_Year": 42313.0, "January_He": 7486.0, "February_H": 5148.0, "March_Heat": 2929.0, "April_Heat": 435.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 1380.0, "November_H": 4715.0, "December_H": 7309.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207742756700945, 48.790305801135084, 0.0 ], [ 9.207772310239948, 48.790113131411097, 0.0 ], [ 9.207785786385942, 48.79011382648558, 0.0 ], [ 9.207785656233819, 48.790115265498443, 0.0 ], [ 9.207914299118674, 48.790123576057994, 0.0 ], [ 9.207883794950199, 48.790316607228633, 0.0 ], [ 9.207742756700945, 48.790305801135084, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036f17", "Latitude": 48.7944, "Longitude": 9.20272, "X_coordina": 3514966.68, "Y_coordina": 5406345.71, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 862.7, "SecondaryU": "retail", "Secondar00": 159.9, "BuildingTy": "GMH", "Footprint_": 199.9, "Total_wall": 522.0, "Total_wa00": 0.0, "Total_outw": 718.7, "Total_shar": 478.1, "Total_roof": 221.5, "Gross_volu": 3294.4, "Is_Gross_v": "false", "Heated_vol": 3195.7, "Ridge_mean": 18.0, "Eaves_mean": 14.84, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 16, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.292, "Heated_are": 1022.6, "Mean_Uvalu": 0.47, "Specific_d": "24,8", "Specific_s": 35.4, "Total_Year": 61576.0, "January_He": 8639.0, "February_H": 6359.0, "March_Heat": 4180.0, "April_Heat": 990.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 110.0, "October_He": 1966.0, "November_H": 5555.0, "December_H": 8407.0, "PV_potenti": 12.25 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20254396879815, 48.794433652634524, 0.0 ], [ 9.202687139473644, 48.794329269250198, 0.0 ], [ 9.202703511092864, 48.79433895217835, 0.0 ], [ 9.202757127573854, 48.794370510882644, 0.0 ], [ 9.202813882133047, 48.794403952429931, 0.0 ], [ 9.202816883677512, 48.794405745614846, 0.0 ], [ 9.202753234099651, 48.794451359017799, 0.0 ], [ 9.202750503676564, 48.794449295583213, 0.0 ], [ 9.20272987522034, 48.794464079363941, 0.0 ], [ 9.202733012869899, 48.79446587231142, 0.0 ], [ 9.202671398551733, 48.794509953385159, 0.0 ], [ 9.20266853311082, 48.794508159956948, 0.0 ], [ 9.202614644691467, 48.794476691614221, 0.0 ], [ 9.202541247072027, 48.794433747345096, 0.0 ], [ 9.202542468029907, 48.794432756038518, 0.0 ], [ 9.20254396879815, 48.794433652634524, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036df9", "Latitude": 48.79405, "Longitude": 9.20256, "X_coordina": 3514954.92, "Y_coordina": 5406306.9, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 572.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 351.0, "Total_wall": 404.2, "Total_wa00": 0.0, "Total_outw": 830.6, "Total_shar": 101.9, "Total_roof": 351.0, "Gross_volu": 1827.3, "Is_Gross_v": "false", "Heated_vol": 1789.5, "Ridge_mean": 5.2, "Eaves_mean": 5.21, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.61, "Heated_are": 572.7, "Mean_Uvalu": 0.38, "Specific_d": "14,6", "Specific_s": 63.5, "Total_Year": 44722.0, "January_He": 8237.0, "February_H": 6103.0, "March_Heat": 4312.0, "April_Heat": 1531.0, "May_Heatin": 193.0, "June_Heati": 7, "July_Heati": 1, "August_Hea": 1, "September_": 344.0, "October_He": 2265.0, "November_H": 5355.0, "December_H": 8009.0, "PV_potenti": 16.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202629996093606, 48.794165439158817, 0.0 ], [ 9.202515535470292, 48.794098647449189, 0.0 ], [ 9.202411320887865, 48.794176614554843, 0.0 ], [ 9.20230185389584, 48.794133104058908, 0.0 ], [ 9.202526704690822, 48.793965540929761, 0.0 ], [ 9.202733527622545, 48.794086933516354, 0.0 ], [ 9.202629996093606, 48.794165439158817, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036dfa", "Latitude": 48.79385, "Longitude": 9.20275, "X_coordina": 3514968.86, "Y_coordina": 5406285.02, "LOD": "LOD2", "Year_of_co": 1992, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 35.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 44.3, "Total_wall": 55.2, "Total_wa00": 0.0, "Total_outw": 170.8, "Total_shar": 36.1, "Total_roof": 44.3, "Gross_volu": 126.9, "Is_Gross_v": "true", "Heated_vol": 110.9, "Ridge_mean": 2.9, "Eaves_mean": 2.86, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 1.195, "Heated_are": 35.5, "Mean_Uvalu": 0.41, "Specific_d": "14,6", "Specific_s": 96.8, "Total_Year": 3952.0, "January_He": 810.0, "February_H": 573.0, "March_Heat": 381.0, "April_Heat": 120.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 203.0, "November_H": 516.0, "December_H": 792.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202716370399987, 48.793916019021076, 0.0 ], [ 9.202641882154552, 48.793872447266814, 0.0 ], [ 9.202696567882338, 48.793831705571549, 0.0 ], [ 9.202771056114601, 48.793875277290773, 0.0 ], [ 9.202716370399987, 48.793916019021076, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036c84", "Latitude": 48.79251, "Longitude": 9.20187, "X_coordina": 3514904.84, "Y_coordina": 5406135.88, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 366.0, "SecondaryU": "office and administration", "Secondar00": 91.2, "BuildingTy": "MFH", "Footprint_": 114.0, "Total_wall": 481.4, "Total_wa00": 0.0, "Total_outw": 649.3, "Total_shar": 232.4, "Total_roof": 114.0, "Gross_volu": 1428.7, "Is_Gross_v": "false", "Heated_vol": 1428.7, "Ridge_mean": 12.5, "Eaves_mean": 12.53, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 9, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.497, "Heated_are": 457.2, "Mean_Uvalu": 0.46, "Specific_d": "15,6", "Specific_s": 47.9, "Total_Year": 29032.0, "January_He": 5300.0, "February_H": 3752.0, "March_Heat": 2401.0, "April_Heat": 584.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 88.0, "October_He": 1207.0, "November_H": 3358.0, "December_H": 5182.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201920140956538, 48.792554086532164, 0.0 ], [ 9.20192137018066, 48.79255516345988, 0.0 ], [ 9.201918793314363, 48.792557416067915, 0.0 ], [ 9.201909108972652, 48.792552127556412, 0.0 ], [ 9.201845869928277, 48.792597919600439, 0.0 ], [ 9.201739335429565, 48.792538037325478, 0.0 ], [ 9.201710976470135, 48.792559488816778, 0.0 ], [ 9.201708248355288, 48.792557964894307, 0.0 ], [ 9.201788849035065, 48.792497395035696, 0.0 ], [ 9.201809585518578, 48.792509678229379, 0.0 ], [ 9.201862371550474, 48.792470558873973, 0.0 ], [ 9.201896476063579, 48.792490372199723, 0.0 ], [ 9.201948178543617, 48.792520405944899, 0.0 ], [ 9.201945465581048, 48.792522658792215, 0.0 ], [ 9.201948058323673, 48.792524362793621, 0.0 ], [ 9.20194602513539, 48.79252643460169, 0.0 ], [ 9.201951347442312, 48.792530022211665, 0.0 ], [ 9.201920140956538, 48.792554086532164, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003685d", "Latitude": 48.7885, "Longitude": 9.21105, "X_coordina": 3515580.01, "Y_coordina": 5405691.55, "LOD": "LOD2", "Year_of_co": 1991, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 96.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.2, "Total_wall": 58.6, "Total_wa00": 0.0, "Total_outw": 140.2, "Total_shar": 197.5, "Total_roof": 63.7, "Gross_volu": 346.6, "Is_Gross_v": "false", "Heated_vol": 300.4, "Ridge_mean": 9.3, "Eaves_mean": 5.72, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.521, "Heated_are": 96.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 46.1, "Total_Year": 5954.0, "January_He": 1134.0, "February_H": 761.0, "March_Heat": 418.0, "April_Heat": 63.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 211.0, "November_H": 719.0, "December_H": 1115.0, "PV_potenti": 1.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21100138326279, 48.788549782804097, 0.0 ], [ 9.210950757989151, 48.788549785626479, 0.0 ], [ 9.210950708635423, 48.788505543279626, 0.0 ], [ 9.210950799493975, 48.788494752274801, 0.0 ], [ 9.211001560800577, 48.788494749203132, 0.0 ], [ 9.211053274725076, 48.788494744363291, 0.0 ], [ 9.211053505509081, 48.788549777216012, 0.0 ], [ 9.21100138326279, 48.788549782804097, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036717", "Latitude": 48.78768, "Longitude": 9.20098, "X_coordina": 3514840.53, "Y_coordina": 5405598.61, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 519.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 114.5, "Total_wall": 375.4, "Total_wa00": 0.0, "Total_outw": 586.1, "Total_shar": 255.9, "Total_roof": 164.1, "Gross_volu": 1737.8, "Is_Gross_v": "false", "Heated_vol": 1623.4, "Ridge_mean": 19.0, "Eaves_mean": 12.27, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.395, "Heated_are": 519.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 37.5, "Total_Year": 27718.0, "January_He": 4866.0, "February_H": 3386.0, "March_Heat": 2048.0, "April_Heat": 394.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 959.0, "November_H": 2994.0, "December_H": 4789.0, "PV_potenti": 7.99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201006825791271, 48.787695312343502, 0.0 ], [ 9.20100084554003, 48.787697211178866, 0.0 ], [ 9.201028211846412, 48.787734481729458, 0.0 ], [ 9.200915136294162, 48.787771817542009, 0.0 ], [ 9.20087819483658, 48.787722244126108, 0.0 ], [ 9.200842347165018, 48.787673927721599, 0.0 ], [ 9.200955969409529, 48.787637220491455, 0.0 ], [ 9.200974718053875, 48.787663445482451, 0.0 ], [ 9.200981513382386, 48.787661185531242, 0.0 ], [ 9.201006825791271, 48.787695312343502, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036718", "Latitude": 48.78758, "Longitude": 9.201, "X_coordina": 3514841.74, "Y_coordina": 5405587.02, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 26.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 32.7, "Total_wall": 57.2, "Total_wa00": 0.0, "Total_outw": 178.0, "Total_shar": 0.0, "Total_roof": 32.7, "Gross_volu": 82.0, "Is_Gross_v": "false", "Heated_vol": 81.3, "Ridge_mean": 2.5, "Eaves_mean": 2.52, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 1.501, "Heated_are": 26.0, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200968067770916, 48.787565710064221, 0.0 ], [ 9.201003770061856, 48.787611688669003, 0.0 ], [ 9.200934321674598, 48.787634740403512, 0.0 ], [ 9.200898892679298, 48.787589031071626, 0.0 ], [ 9.200968067770916, 48.787565710064221, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036642", "Latitude": 48.79464, "Longitude": 9.20441, "X_coordina": 3515090.8, "Y_coordina": 5406372.49, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 226.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 73.5, "Total_wall": 256.4, "Total_wa00": 0.0, "Total_outw": 460.0, "Total_shar": 57.0, "Total_roof": 89.4, "Gross_volu": 680.1, "Is_Gross_v": "false", "Heated_vol": 606.5, "Ridge_mean": 10.7, "Eaves_mean": 7.53, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.662, "Heated_are": 226.0, "Mean_Uvalu": 0.57, "Specific_d": "15,8", "Specific_s": 59.0, "Total_Year": 16925.0, "January_He": 3168.0, "February_H": 2271.0, "March_Heat": 1489.0, "April_Heat": 398.0, "May_Heatin": 24.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 64.0, "October_He": 771.0, "November_H": 2051.0, "December_H": 3109.0, "PV_potenti": 3.65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204320092840536, 48.794689225122752, 0.0 ], [ 9.204281073325188, 48.794666273915929, 0.0 ], [ 9.204363037876337, 48.794606329324708, 0.0 ], [ 9.204400967081874, 48.794628922745041, 0.0 ], [ 9.204434120955716, 48.794648647076421, 0.0 ], [ 9.204457723752775, 48.794662543324797, 0.0 ], [ 9.204418917184496, 48.794692017219525, 0.0 ], [ 9.204394225909166, 48.794678212818766, 0.0 ], [ 9.204352973416634, 48.794708680191512, 0.0 ], [ 9.204320092840536, 48.794689225122752, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003663a", "Latitude": 48.79289, "Longitude": 9.20266, "X_coordina": 3514962.83, "Y_coordina": 5406178.43, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 466.0, "SecondaryU": "retail", "Secondar00": 118.7, "BuildingTy": "GMH", "Footprint_": 148.4, "Total_wall": 422.1, "Total_wa00": 0.0, "Total_outw": 632.9, "Total_shar": 308.9, "Total_roof": 171.0, "Gross_volu": 2183.4, "Is_Gross_v": "false", "Heated_vol": 2035.0, "Ridge_mean": 16.3, "Eaves_mean": 13.13, "Storey_num": 5, "Average_St": 3.1, "Number_of_": 9, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.355, "Heated_are": 584.8, "Mean_Uvalu": 0.48, "Specific_d": "27,4", "Specific_s": 41.6, "Total_Year": 40360.0, "January_He": 5888.0, "February_H": 4235.0, "March_Heat": 2682.0, "April_Heat": 598.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 78.0, "October_He": 1297.0, "November_H": 3752.0, "December_H": 5758.0, "PV_potenti": 8.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202685075771106, 48.792870892388216, 0.0 ], [ 9.202738144824348, 48.792902092378398, 0.0 ], [ 9.202614796841821, 48.792993491981321, 0.0 ], [ 9.202560909717791, 48.792961933679472, 0.0 ], [ 9.202503066704111, 48.792928134219096, 0.0 ], [ 9.202628323028211, 48.792837450765582, 0.0 ], [ 9.202685075771106, 48.792870892388216, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036439", "Latitude": 48.78762, "Longitude": 9.20598, "X_coordina": 3515207.67, "Y_coordina": 5405592.21, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 500.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 165.7, "Total_wall": 309.7, "Total_wa00": 0.0, "Total_outw": 581.5, "Total_shar": 151.8, "Total_roof": 250.8, "Gross_volu": 1664.5, "Is_Gross_v": "false", "Heated_vol": 1563.5, "Ridge_mean": 13.1, "Eaves_mean": 7.56, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.452, "Heated_are": 500.3, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 43.6, "Total_Year": 29755.0, "January_He": 5281.0, "February_H": 3746.0, "March_Heat": 2414.0, "April_Heat": 604.0, "May_Heatin": 27.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 1149.0, "November_H": 3347.0, "December_H": 5192.0, "PV_potenti": 9.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205853640535855, 48.787579471340514, 0.0 ], [ 9.205881759911938, 48.787567101529532, 0.0 ], [ 9.205936638556866, 48.787575815923333, 0.0 ], [ 9.205955779259385, 48.787597453296392, 0.0 ], [ 9.205950800749333, 48.787611310444746, 0.0 ], [ 9.206043396986352, 48.787625262823362, 0.0 ], [ 9.206027659352111, 48.787670342736774, 0.0 ], [ 9.206014072934911, 48.787709034219084, 0.0 ], [ 9.205819214059513, 48.787680157457174, 0.0 ], [ 9.205853640535855, 48.787579471340514, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00036399", "Latitude": 48.79544, "Longitude": 9.20897, "X_coordina": 3515425.31, "Y_coordina": 5406463.2, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 280.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 82.1, "Total_wall": 237.0, "Total_wa00": 0.0, "Total_outw": 374.1, "Total_shar": 195.5, "Total_roof": 110.3, "Gross_volu": 947.1, "Is_Gross_v": "false", "Heated_vol": 875.7, "Ridge_mean": 13.9, "Eaves_mean": 9.17, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 3, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.475, "Heated_are": 280.2, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 49.6, "Total_Year": 18336.0, "January_He": 3305.0, "February_H": 2400.0, "March_Heat": 1559.0, "April_Heat": 366.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 51.0, "October_He": 795.0, "November_H": 2184.0, "December_H": 3224.0, "PV_potenti": 5.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208999406477584, 48.795439782664005, 0.0 ], [ 9.209006760741723, 48.795440848399487, 0.0 ], [ 9.208995061362142, 48.795475040579014, 0.0 ], [ 9.208983227726952, 48.795509682618494, 0.0 ], [ 9.208915404494453, 48.795499734240543, 0.0 ], [ 9.208844448956677, 48.795489341885393, 0.0 ], [ 9.208868117138989, 48.795420237678712, 0.0 ], [ 9.208939345545103, 48.795430809371418, 0.0 ], [ 9.208999406477584, 48.795439782664005, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003639a", "Latitude": 48.79545, "Longitude": 9.20912, "X_coordina": 3515436.16, "Y_coordina": 5406463.65, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 34.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.3, "Total_wall": 42.8, "Total_wa00": 0.0, "Total_outw": 148.9, "Total_shar": 108.4, "Total_roof": 42.3, "Gross_volu": 148.6, "Is_Gross_v": "false", "Heated_vol": 106.3, "Ridge_mean": 3.5, "Eaves_mean": 3.5, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.973, "Heated_are": 34.0, "Mean_Uvalu": 0.39, "Specific_d": "non calculated", "Specific_s": 105.9, "Total_Year": 3602.0, "January_He": 747.0, "February_H": 565.0, "March_Heat": 438.0, "April_Heat": 202.0, "May_Heatin": 41.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 68.0, "October_He": 278.0, "November_H": 527.0, "December_H": 735.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209139834103659, 48.795496629175155, 0.0 ], [ 9.208995061362142, 48.795475040579014, 0.0 ], [ 9.209006760741723, 48.795440848399487, 0.0 ], [ 9.209079896947229, 48.795451956084065, 0.0 ], [ 9.209151534885043, 48.795462796672687, 0.0 ], [ 9.209139834103659, 48.795496629175155, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003632e", "Latitude": 48.78803, "Longitude": 9.21134, "X_coordina": 3515601.63, "Y_coordina": 5405639.64, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 107.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 54.9, "Total_wall": 57.0, "Total_wa00": 0.0, "Total_outw": 121.0, "Total_shar": 202.0, "Total_roof": 66.6, "Gross_volu": 378.2, "Is_Gross_v": "false", "Heated_vol": 335.9, "Ridge_mean": 8.4, "Eaves_mean": 5.32, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.497, "Heated_are": 107.5, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 46.3, "Total_Year": 6680.0, "January_He": 1246.0, "February_H": 861.0, "March_Heat": 500.0, "April_Heat": 84.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 11.0, "October_He": 253.0, "November_H": 799.0, "December_H": 1222.0, "PV_potenti": 2.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211362446906408, 48.788035656606894, 0.0 ], [ 9.211346205432854, 48.788089280916324, 0.0 ], [ 9.211290244153705, 48.788082369558715, 0.0 ], [ 9.21122624959669, 48.788074483748439, 0.0 ], [ 9.21124112881358, 48.788020502259968, 0.0 ], [ 9.211305123681832, 48.788028477985144, 0.0 ], [ 9.211362446906408, 48.788035656606894, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00035f5e", "Latitude": 48.78844, "Longitude": 9.19596, "X_coordina": 3514471.31, "Y_coordina": 5405681.33, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 35.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 38.9, "Total_wall": 44.7, "Total_wa00": 0.0, "Total_outw": 145.8, "Total_shar": 51.1, "Total_roof": 38.9, "Gross_volu": 94.0, "Is_Gross_v": "false", "Heated_vol": 94.0, "Ridge_mean": 2.4, "Eaves_mean": 2.41, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.302, "Heated_are": 35.2, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195896463058912, 48.788494817925312, 0.0 ], [ 9.195858281960737, 48.788440299214869, 0.0 ], [ 9.19593114334703, 48.788419133132457, 0.0 ], [ 9.19596891449199, 48.788473202898373, 0.0 ], [ 9.195896463058912, 48.788494817925312, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00035f4d", "Latitude": 48.79273, "Longitude": 9.19912, "X_coordina": 3514702.15, "Y_coordina": 5406159.25, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1308.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 276.6, "Total_wall": 725.5, "Total_wa00": 0.0, "Total_outw": 1080.5, "Total_shar": 251.2, "Total_roof": 414.0, "Gross_volu": 4299.1, "Is_Gross_v": "false", "Heated_vol": 4089.8, "Ridge_mean": 18.6, "Eaves_mean": 12.68, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 21, "Number_o00": 43, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.34, "Heated_are": 1308.7, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 38.2, "Total_Year": 70763.0, "January_He": 12019.0, "February_H": 8776.0, "March_Heat": 5648.0, "April_Heat": 1185.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 133.0, "October_He": 2750.0, "November_H": 7804.0, "December_H": 11686.0, "PV_potenti": 20.22 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199130392204419, 48.792631692553485, 0.0 ], [ 9.199187822895748, 48.792665134726967, 0.0 ], [ 9.199241843336365, 48.792696604453155, 0.0 ], [ 9.199014547399363, 48.792866683295905, 0.0 ], [ 9.198902141705169, 48.792801323209147, 0.0 ], [ 9.19891910443976, 48.792788704607517, 0.0 ], [ 9.198940409565488, 48.792772841252635, 0.0 ], [ 9.199130392204419, 48.792631692553485, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000359d8", "Latitude": 48.79413, "Longitude": 9.20056, "X_coordina": 3514808.18, "Y_coordina": 5406315.82, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 190.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 114.4, "Total_wall": 206.4, "Total_wa00": 0.0, "Total_outw": 456.7, "Total_shar": 120.1, "Total_roof": 114.4, "Gross_volu": 710.0, "Is_Gross_v": "false", "Heated_vol": 595.6, "Ridge_mean": 6.2, "Eaves_mean": 6.21, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 6, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.669, "Heated_are": 190.6, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 55.6, "Total_Year": 13614.0, "January_He": 2624.0, "February_H": 1820.0, "March_Heat": 1090.0, "April_Heat": 217.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 34.0, "October_He": 563.0, "November_H": 1664.0, "December_H": 2574.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200575943560233, 48.79407272698122, 0.0 ], [ 9.200637197794745, 48.794108679624365, 0.0 ], [ 9.200465399088349, 48.794236580354493, 0.0 ], [ 9.200404145178512, 48.794200717543845, 0.0 ], [ 9.20040794498162, 48.794197923300686, 0.0 ], [ 9.200508092866858, 48.79412329225994, 0.0 ], [ 9.200575943560233, 48.79407272698122, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003584e", "Latitude": 48.78872, "Longitude": 9.20042, "X_coordina": 3514799.24, "Y_coordina": 5405714.11, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 862.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 215.8, "Total_wall": 785.6, "Total_wa00": 0.0, "Total_outw": 1014.4, "Total_shar": 0.0, "Total_roof": 215.8, "Gross_volu": 2708.2, "Is_Gross_v": "false", "Heated_vol": 2696.5, "Ridge_mean": 12.6, "Eaves_mean": 12.55, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 11, "Number_o00": 16, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.451, "Heated_are": 862.9, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 40.4, "Total_Year": 48543.0, "January_He": 8503.0, "February_H": 6038.0, "March_Heat": 3841.0, "April_Heat": 842.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 97.0, "October_He": 1845.0, "November_H": 5352.0, "December_H": 8326.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200307239011346, 48.78879881552151, 0.0 ], [ 9.200287502235675, 48.788763689704631, 0.0 ], [ 9.20028981360309, 48.788763146142642, 0.0 ], [ 9.200259387124781, 48.788709244870205, 0.0 ], [ 9.200314178000102, 48.788695840874887, 0.0 ], [ 9.200308558625657, 48.788685869124627, 0.0 ], [ 9.200439213622095, 48.788653898735248, 0.0 ], [ 9.200476765602032, 48.788720017172295, 0.0 ], [ 9.200458955138316, 48.788724364512348, 0.0 ], [ 9.200495548124225, 48.788788865986184, 0.0 ], [ 9.200310101816278, 48.788834240458534, 0.0 ], [ 9.200292147784012, 48.788802528640232, 0.0 ], [ 9.200307239011346, 48.78879881552151, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00035790", "Latitude": 48.79388, "Longitude": 9.2021, "X_coordina": 3514921.21, "Y_coordina": 5406288.43, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1625.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 298.5, "Total_wall": 1318.4, "Total_wa00": 0.0, "Total_outw": 1692.0, "Total_shar": 351.3, "Total_roof": 298.5, "Gross_volu": 5080.8, "Is_Gross_v": "false", "Heated_vol": 5080.8, "Ridge_mean": 17.8, "Eaves_mean": 17.78, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 26, "Number_o00": 36, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.377, "Heated_are": 1625.9, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 33.5, "Total_Year": 80182.0, "January_He": 13328.0, "February_H": 9574.0, "March_Heat": 6026.0, "April_Heat": 1213.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 114.0, "October_He": 2780.0, "November_H": 8381.0, "December_H": 12981.0, "PV_potenti": 14.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201897801650249, 48.79397401898629, 0.0 ], [ 9.201894527236259, 48.79397204640857, 0.0 ], [ 9.201877746499974, 48.793962094311397, 0.0 ], [ 9.201984270885138, 48.793883044551244, 0.0 ], [ 9.201974038981914, 48.793877037618259, 0.0 ], [ 9.202000229226813, 48.793857658113474, 0.0 ], [ 9.202010461129209, 48.793863665044157, 0.0 ], [ 9.202121463120415, 48.793781280129018, 0.0 ], [ 9.202122554831345, 48.793781997601442, 0.0 ], [ 9.202138653236156, 48.793791501243128, 0.0 ], [ 9.202146020121097, 48.793795804643018, 0.0 ], [ 9.202201954480303, 48.793828618469661, 0.0 ], [ 9.202238380301864, 48.793850046237978, 0.0 ], [ 9.20219875535537, 48.793879251055721, 0.0 ], [ 9.202172561089883, 48.793863740268336, 0.0 ], [ 9.202150849298819, 48.793879874702348, 0.0 ], [ 9.202177043204729, 48.793895295571687, 0.0 ], [ 9.202054234382153, 48.793986243994141, 0.0 ], [ 9.20202804010532, 48.79397073317422, 0.0 ], [ 9.202006328221845, 48.793986867580848, 0.0 ], [ 9.202032522139351, 48.794002288482737, 0.0 ], [ 9.201995204573278, 48.794029960481019, 0.0 ], [ 9.201899159434502, 48.793973207293668, 0.0 ], [ 9.201897801650249, 48.79397401898629, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003559c", "Latitude": 48.78777, "Longitude": 9.20789, "X_coordina": 3515348.66, "Y_coordina": 5405609.85, "LOD": "LOD2", "Year_of_co": 1947, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 976.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 201.1, "Total_wall": 648.5, "Total_wa00": 0.0, "Total_outw": 820.0, "Total_shar": 191.9, "Total_roof": 267.6, "Gross_volu": 3251.5, "Is_Gross_v": "false", "Heated_vol": 3050.4, "Ridge_mean": 18.6, "Eaves_mean": 13.6, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 16, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.358, "Heated_are": 976.1, "Mean_Uvalu": 0.59, "Specific_d": "15,8", "Specific_s": 43.3, "Total_Year": 57774.0, "January_He": 10158.0, "February_H": 7287.0, "March_Heat": 4711.0, "April_Heat": 1094.0, "May_Heatin": 40.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 149.0, "October_He": 2409.0, "November_H": 6567.0, "December_H": 9897.0, "PV_potenti": 13.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207857706412168, 48.787888356254037, 0.0 ], [ 9.207718619413724, 48.787755160499223, 0.0 ], [ 9.207782733725107, 48.787726359186387, 0.0 ], [ 9.207845217528751, 48.787698190246203, 0.0 ], [ 9.207982539295022, 48.787832288274288, 0.0 ], [ 9.207918017446792, 48.787861270280878, 0.0 ], [ 9.207857706412168, 48.787888356254037, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000354fa", "Latitude": 48.79517, "Longitude": 9.20979, "X_coordina": 3515485.3, "Y_coordina": 5406432.98, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 314.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 85.9, "Total_wall": 262.8, "Total_wa00": 0.0, "Total_outw": 399.6, "Total_shar": 192.1, "Total_roof": 116.4, "Gross_volu": 1018.3, "Is_Gross_v": "false", "Heated_vol": 983.3, "Ridge_mean": 13.9, "Eaves_mean": 9.45, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 4, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.467, "Heated_are": 314.7, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 43.2, "Total_Year": 18563.0, "January_He": 3301.0, "February_H": 2358.0, "March_Heat": 1477.0, "April_Heat": 294.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 738.0, "November_H": 2148.0, "December_H": 3218.0, "PV_potenti": 5.31 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209666396521735, 48.795225631294706, 0.0 ], [ 9.209696939664902, 48.795140867699942, 0.0 ], [ 9.20974747107134, 48.795149408337238, 0.0 ], [ 9.209758912245888, 48.795151365816565, 0.0 ], [ 9.209815709063049, 48.795160974094316, 0.0 ], [ 9.209786650157335, 48.795242587692314, 0.0 ], [ 9.20974007098723, 48.795235298803981, 0.0 ], [ 9.209739397576662, 48.795237008577857, 0.0 ], [ 9.209715971889402, 48.79523336437434, 0.0 ], [ 9.209666396521735, 48.795225631294706, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003533e", "Latitude": 48.79522, "Longitude": 9.20904, "X_coordina": 3515430.75, "Y_coordina": 5406438.57, "LOD": "LOD2", "Year_of_co": 1939, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 152.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 61.6, "Total_wall": 135.5, "Total_wa00": 0.0, "Total_outw": 262.9, "Total_shar": 115.7, "Total_roof": 102.1, "Gross_volu": 500.1, "Is_Gross_v": "false", "Heated_vol": 477.6, "Ridge_mean": 10.8, "Eaves_mean": 4.84, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.616, "Heated_are": 152.8, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 49.8, "Total_Year": 10027.0, "January_He": 1984.0, "February_H": 1278.0, "March_Heat": 699.0, "April_Heat": 135.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 17.0, "October_He": 333.0, "November_H": 1172.0, "December_H": 1983.0, "PV_potenti": 4.39 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208982790616124, 48.79527336433442, 0.0 ], [ 9.208924635377503, 48.795264387575642, 0.0 ], [ 9.20894453157479, 48.795204732166169, 0.0 ], [ 9.209059068074074, 48.795221609772291, 0.0 ], [ 9.209072833137297, 48.795225991036787, 0.0 ], [ 9.209065297484081, 48.79524677705691, 0.0 ], [ 9.209050723622456, 48.795244285654235, 0.0 ], [ 9.209039720168423, 48.795282163441598, 0.0 ], [ 9.208982790616124, 48.79527336433442, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003525a", "Latitude": 48.79248, "Longitude": 9.19854, "X_coordina": 3514659.93, "Y_coordina": 5406131.1, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 140.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 50.4, "Total_wall": 73.2, "Total_wa00": 0.0, "Total_outw": 147.4, "Total_shar": 322.5, "Total_roof": 86.4, "Gross_volu": 490.5, "Is_Gross_v": "false", "Heated_vol": 440.1, "Ridge_mean": 12.9, "Eaves_mean": 6.31, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 2, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.454, "Heated_are": 140.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.9, "Total_Year": 8135.0, "January_He": 1445.0, "February_H": 1015.0, "March_Heat": 640.0, "April_Heat": 145.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 17.0, "October_He": 309.0, "November_H": 909.0, "December_H": 1419.0, "PV_potenti": 3.31 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198509336256771, 48.792451748636068, 0.0 ], [ 9.198507978813447, 48.792452650211963, 0.0 ], [ 9.198535807954981, 48.792469058253189, 0.0 ], [ 9.198557113066739, 48.792453194968296, 0.0 ], [ 9.198575256119772, 48.792463774667446, 0.0 ], [ 9.198563586016325, 48.792472517378897, 0.0 ], [ 9.19853495318538, 48.792493878637423, 0.0 ], [ 9.198508491532689, 48.79251361752145, 0.0 ], [ 9.198467374405279, 48.792544352336165, 0.0 ], [ 9.198464100573172, 48.792542469583076, 0.0 ], [ 9.19846518582105, 48.792541568476857, 0.0 ], [ 9.198421941629251, 48.792516104698542, 0.0 ], [ 9.198420584182626, 48.792517006273386, 0.0 ], [ 9.198417583261726, 48.792515302895943, 0.0 ], [ 9.198459244083274, 48.792484387314644, 0.0 ], [ 9.198505926330048, 48.792449866118758, 0.0 ], [ 9.198509336256771, 48.792451748636068, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000351a0", "Latitude": 48.78866, "Longitude": 9.20698, "X_coordina": 3515281.42, "Y_coordina": 5405707.83, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 50.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 26.8, "Total_wall": 79.1, "Total_wa00": 0.0, "Total_outw": 185.5, "Total_shar": 0.0, "Total_roof": 26.8, "Gross_volu": 99.8, "Is_Gross_v": "false", "Heated_vol": 99.8, "Ridge_mean": 3.7, "Eaves_mean": 3.7, "Storey_num": 2, "Average_St": 1.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.33, "Heated_are": 50.0, "Mean_Uvalu": 0.5, "Specific_d": "32,9", "Specific_s": 25.2, "Total_Year": 2899.0, "January_He": 383.0, "February_H": 226.0, "March_Heat": 93.0, "April_Heat": 9.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 16.0, "November_H": 165.0, "December_H": 367.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206969688331467, 48.788704484138037, 0.0 ], [ 9.206914989472718, 48.788706740599942, 0.0 ], [ 9.206914561981062, 48.788702065338263, 0.0 ], [ 9.206908619252065, 48.788646862894794, 0.0 ], [ 9.206964001448092, 48.788645324596999, 0.0 ], [ 9.206967555286354, 48.78868218690652, 0.0 ], [ 9.206969688331467, 48.788704484138037, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00034b30", "Latitude": 48.78905, "Longitude": 9.20894, "X_coordina": 3515425.37, "Y_coordina": 5405752.64, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1844.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 297.3, "Total_wall": 1356.0, "Total_wa00": 0.0, "Total_outw": 1713.6, "Total_shar": 0.0, "Total_roof": 436.3, "Gross_volu": 5771.6, "Is_Gross_v": "false", "Heated_vol": 5765.1, "Ridge_mean": 23.0, "Eaves_mean": 14.68, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 30, "Number_o00": 47, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.362, "Heated_are": 1844.8, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 36.6, "Total_Year": 96813.0, "January_He": 16838.0, "February_H": 11683.0, "March_Heat": 7232.0, "April_Heat": 1449.0, "May_Heatin": 43.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 144.0, "October_He": 3253.0, "November_H": 10387.0, "December_H": 16560.0, "PV_potenti": 14.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208770433120579, 48.789098965977736, 0.0 ], [ 9.208724017803558, 48.789031337609309, 0.0 ], [ 9.208740557347536, 48.789016020611129, 0.0 ], [ 9.208819204514368, 48.789012820623604, 0.0 ], [ 9.2088187846787, 48.7890100337519, 0.0 ], [ 9.208928321203009, 48.789006058285253, 0.0 ], [ 9.208928333895566, 48.789009115666147, 0.0 ], [ 9.20906766919234, 48.789003916993671, 0.0 ], [ 9.209075582239942, 48.789106955124105, 0.0 ], [ 9.208920598552316, 48.789112721737837, 0.0 ], [ 9.208922021419944, 48.789127646481298, 0.0 ], [ 9.208913473879228, 48.789133956642814, 0.0 ], [ 9.208875646822756, 48.789135464037386, 0.0 ], [ 9.208862142188012, 48.789127845021405, 0.0 ], [ 9.20879961912946, 48.789146842365433, 0.0 ], [ 9.208767442872249, 48.789099870635063, 0.0 ], [ 9.208770433120579, 48.789098965977736, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00034b26", "Latitude": 48.78959, "Longitude": 9.20562, "X_coordina": 3515181.3, "Y_coordina": 5405810.99, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 175.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 64.6, "Total_wall": 220.0, "Total_wa00": 0.0, "Total_outw": 357.9, "Total_shar": 49.3, "Total_roof": 64.6, "Gross_volu": 476.8, "Is_Gross_v": "false", "Heated_vol": 476.8, "Ridge_mean": 7.4, "Eaves_mean": 7.36, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.732, "Heated_are": 175.2, "Mean_Uvalu": 0.41, "Specific_d": "73,0", "Specific_s": 54.7, "Total_Year": 22375.0, "January_He": 2263.0, "February_H": 1619.0, "March_Heat": 1088.0, "April_Heat": 333.0, "May_Heatin": 33.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 69.0, "October_He": 552.0, "November_H": 1428.0, "December_H": 2202.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205547631935445, 48.789557798730748, 0.0 ], [ 9.205661542233225, 48.789624678387447, 0.0 ], [ 9.205621516154801, 48.789654334738536, 0.0 ], [ 9.205601873429007, 48.789643219279171, 0.0 ], [ 9.205586265894391, 48.789653768208645, 0.0 ], [ 9.205499502054863, 48.78960257667476, 0.0 ], [ 9.205500957198721, 48.789592322783655, 0.0 ], [ 9.205547631935445, 48.789557798730748, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00034b24", "Latitude": 48.78968, "Longitude": 9.20546, "X_coordina": 3515169.02, "Y_coordina": 5405821.04, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 549.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 132.3, "Total_wall": 437.5, "Total_wa00": 0.0, "Total_outw": 678.0, "Total_shar": 172.2, "Total_roof": 189.1, "Gross_volu": 1849.6, "Is_Gross_v": "false", "Heated_vol": 1717.4, "Ridge_mean": 16.7, "Eaves_mean": 11.04, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 9, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.43, "Heated_are": 549.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.2, "Total_Year": 31903.0, "January_He": 5670.0, "February_H": 3992.0, "March_Heat": 2519.0, "April_Heat": 544.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 70.0, "October_He": 1245.0, "November_H": 3593.0, "December_H": 5547.0, "PV_potenti": 8.56 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205431999750598, 48.78963578900958, 0.0 ], [ 9.205527083893267, 48.789691551850147, 0.0 ], [ 9.205474166058698, 48.789730313444196, 0.0 ], [ 9.205426539937953, 48.789765198857964, 0.0 ], [ 9.205300219619966, 48.789692046440976, 0.0 ], [ 9.205333865394699, 48.789666268294511, 0.0 ], [ 9.20534607583636, 48.78965698438774, 0.0 ], [ 9.205383384288412, 48.789628322139166, 0.0 ], [ 9.205416806329746, 48.789647775955522, 0.0 ], [ 9.205431999750598, 48.78963578900958, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000346e4", "Latitude": 48.79562, "Longitude": 9.2094, "X_coordina": 3515456.64, "Y_coordina": 5406482.96, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 129.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 65.0, "Total_wall": 101.5, "Total_wa00": 0.0, "Total_outw": 207.1, "Total_shar": 151.0, "Total_roof": 77.7, "Gross_volu": 449.8, "Is_Gross_v": "false", "Heated_vol": 403.7, "Ridge_mean": 8.4, "Eaves_mean": 5.47, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.573, "Heated_are": 129.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 50.1, "Total_Year": 8524.0, "January_He": 1614.0, "February_H": 1098.0, "March_Heat": 672.0, "April_Heat": 152.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 21.0, "October_He": 324.0, "November_H": 993.0, "December_H": 1597.0, "PV_potenti": 3.55 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209302925926375, 48.795635714366483, 0.0 ], [ 9.209316915767658, 48.795595942733918, 0.0 ], [ 9.209415386229395, 48.795611320485108, 0.0 ], [ 9.209408525958855, 48.795630846368567, 0.0 ], [ 9.209401801042164, 48.795650192158334, 0.0 ], [ 9.209389156238897, 48.795686094643017, 0.0 ], [ 9.209388483184656, 48.795687894337597, 0.0 ], [ 9.209290012955289, 48.795672606486725, 0.0 ], [ 9.209302925926375, 48.795635714366483, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000343f6", "Latitude": 48.79203, "Longitude": 9.19776, "X_coordina": 3514602.76, "Y_coordina": 5406080.89, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 313.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 114.3, "Total_wall": 117.2, "Total_wa00": 0.0, "Total_outw": 239.8, "Total_shar": 314.9, "Total_roof": 183.5, "Gross_volu": 1093.0, "Is_Gross_v": "false", "Heated_vol": 978.7, "Ridge_mean": 12.6, "Eaves_mean": 6.23, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.399, "Heated_are": 313.2, "Mean_Uvalu": 0.45, "Specific_d": "14,6", "Specific_s": 61.4, "Total_Year": 23819.0, "January_He": 4283.0, "February_H": 3204.0, "March_Heat": 2337.0, "April_Heat": 885.0, "May_Heatin": 115.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 209.0, "October_He": 1238.0, "November_H": 2820.0, "December_H": 4146.0, "PV_potenti": 8.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197612326817582, 48.792042430538842, 0.0 ], [ 9.197653307960996, 48.792011696259941, 0.0 ], [ 9.197697953096529, 48.791978257968132, 0.0 ], [ 9.19777188916883, 48.792021654032666, 0.0 ], [ 9.197820724291192, 48.792050075931414, 0.0 ], [ 9.197776486054321, 48.792083153877122, 0.0 ], [ 9.197733197973095, 48.79211560070901, 0.0 ], [ 9.19772965058652, 48.792113358710289, 0.0 ], [ 9.197731821443467, 48.792111646434485, 0.0 ], [ 9.197612326817582, 48.792042430538842, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000343f7", "Latitude": 48.79197, "Longitude": 9.19767, "X_coordina": 3514595.96, "Y_coordina": 5406074.76, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 162.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 58.6, "Total_wall": 85.1, "Total_wa00": 0.0, "Total_outw": 162.9, "Total_shar": 253.9, "Total_roof": 93.6, "Gross_volu": 565.6, "Is_Gross_v": "false", "Heated_vol": 507.0, "Ridge_mean": 12.6, "Eaves_mean": 6.65, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.443, "Heated_are": 162.2, "Mean_Uvalu": 0.45, "Specific_d": "14,6", "Specific_s": 63.7, "Total_Year": 12710.0, "January_He": 2317.0, "February_H": 1720.0, "March_Heat": 1244.0, "April_Heat": 466.0, "May_Heatin": 61.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 110.0, "October_He": 659.0, "November_H": 1515.0, "December_H": 2247.0, "PV_potenti": 3.33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197612326817582, 48.792042430538842, 0.0 ], [ 9.197550808236988, 48.79200728604134, 0.0 ], [ 9.197549716629611, 48.792006568525224, 0.0 ], [ 9.197590559918861, 48.791975384886946, 0.0 ], [ 9.197634930749484, 48.791941407548428, 0.0 ], [ 9.197636840708871, 48.791942573277232, 0.0 ], [ 9.197697953096529, 48.791978257968132, 0.0 ], [ 9.197653307960996, 48.792011696259941, 0.0 ], [ 9.197612326817582, 48.792042430538842, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000343f8", "Latitude": 48.79199, "Longitude": 9.19788, "X_coordina": 3514611.19, "Y_coordina": 5406076.43, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 32.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 40.1, "Total_wall": 44.3, "Total_wa00": 0.0, "Total_outw": 143.3, "Total_shar": 75.5, "Total_roof": 40.1, "Gross_volu": 125.4, "Is_Gross_v": "false", "Heated_vol": 100.5, "Ridge_mean": 3.1, "Eaves_mean": 3.12, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.08, "Heated_are": 32.2, "Mean_Uvalu": 0.37, "Specific_d": "14,6", "Specific_s": 81.9, "Total_Year": 3103.0, "January_He": 630.0, "February_H": 441.0, "March_Heat": 286.0, "April_Heat": 89.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 18.0, "October_He": 147.0, "November_H": 390.0, "December_H": 621.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197843114346304, 48.792033221754039, 0.0 ], [ 9.197820724291192, 48.792050075931414, 0.0 ], [ 9.19777188916883, 48.792021654032666, 0.0 ], [ 9.197814907069882, 48.791989747191401, 0.0 ], [ 9.197804809671618, 48.791983110190124, 0.0 ], [ 9.197831406359674, 48.791963101463082, 0.0 ], [ 9.197890337453968, 48.791997800639628, 0.0 ], [ 9.197843114346304, 48.792033221754039, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003433d", "Latitude": 48.79428, "Longitude": 9.20452, "X_coordina": 3515098.62, "Y_coordina": 5406332.65, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 675.0, "SecondaryU": "office and administration", "Secondar00": 107.7, "BuildingTy": "GMH", "Footprint_": 134.7, "Total_wall": 871.3, "Total_wa00": 0.0, "Total_outw": 1151.6, "Total_shar": 0.0, "Total_roof": 156.6, "Gross_volu": 2170.6, "Is_Gross_v": "false", "Heated_vol": 2170.6, "Ridge_mean": 17.5, "Eaves_mean": 17.47, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 13, "Number_o00": 25, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.536, "Heated_are": 782.7, "Mean_Uvalu": 0.41, "Specific_d": "15,7", "Specific_s": 38.2, "Total_Year": 42186.0, "January_He": 7486.0, "February_H": 5190.0, "March_Heat": 3121.0, "April_Heat": 615.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 69.0, "October_He": 1447.0, "November_H": 4621.0, "December_H": 7351.0, "PV_potenti": 6.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204405408046076, 48.794281450229875, 0.0 ], [ 9.204398183941821, 48.794278855269013, 0.0 ], [ 9.204401550742002, 48.794270036784091, 0.0 ], [ 9.204407919498783, 48.794263101365424, 0.0 ], [ 9.204417963424685, 48.794256249346248, 0.0 ], [ 9.20442546302259, 48.794259653128897, 0.0 ], [ 9.204454320520371, 48.794226959645535, 0.0 ], [ 9.204460958914254, 48.794219394280212, 0.0 ], [ 9.20457797920997, 48.794245534059314, 0.0 ], [ 9.204573793990885, 48.794253904385499, 0.0 ], [ 9.204555701565639, 48.79428972610193, 0.0 ], [ 9.204517285515079, 48.794281251595066, 0.0 ], [ 9.20448368777337, 48.794319708618978, 0.0 ], [ 9.204518340814076, 48.794339969806515, 0.0 ], [ 9.204466778005399, 48.794378638576106, 0.0 ], [ 9.204370595873979, 48.794322517159678, 0.0 ], [ 9.204405408046076, 48.794281450229875, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003419d", "Latitude": 48.79217, "Longitude": 9.20128, "X_coordina": 3514861.41, "Y_coordina": 5406097.56, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 947.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 192.4, "Total_wall": 470.0, "Total_wa00": 0.0, "Total_outw": 625.7, "Total_shar": 557.8, "Total_roof": 192.4, "Gross_volu": 2961.5, "Is_Gross_v": "false", "Heated_vol": 2961.5, "Ridge_mean": 15.4, "Eaves_mean": 15.38, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 12, "Number_o00": 20, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.289, "Heated_are": 947.7, "Mean_Uvalu": 0.35, "Specific_d": "15,8", "Specific_s": 27.8, "Total_Year": 41334.0, "January_He": 6320.0, "February_H": 4674.0, "March_Heat": 3104.0, "April_Heat": 703.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 1359.0, "November_H": 3998.0, "December_H": 6099.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201329613415204, 48.792216827913613, 0.0 ], [ 9.201323474595169, 48.792213241702186, 0.0 ], [ 9.201304205818943, 48.792227573238492, 0.0 ], [ 9.201310344999104, 48.792231249373884, 0.0 ], [ 9.20131288758833, 48.792254445216123, 0.0 ], [ 9.201273842418216, 48.79225829025733, 0.0 ], [ 9.201246838649043, 48.792278300489322, 0.0 ], [ 9.20115461923905, 48.79222423768659, 0.0 ], [ 9.201105917449965, 48.79219563712121, 0.0 ], [ 9.201105098703451, 48.792195099009469, 0.0 ], [ 9.201108356079517, 48.792192845231057, 0.0 ], [ 9.201135630257522, 48.79217238494094, 0.0 ], [ 9.201169147317479, 48.792147507482603, 0.0 ], [ 9.201196422165335, 48.792127227023961, 0.0 ], [ 9.20122871715901, 48.792103071071985, 0.0 ], [ 9.2012439961112, 48.792112036731695, 0.0 ], [ 9.201369507959049, 48.792187173296796, 0.0 ], [ 9.201329613415204, 48.792216827913613, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00034168", "Latitude": 48.78798, "Longitude": 9.2087, "X_coordina": 3515408.03, "Y_coordina": 5405633.55, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 165.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 57.6, "Total_wall": 119.7, "Total_wa00": 0.0, "Total_outw": 216.8, "Total_shar": 267.2, "Total_roof": 87.7, "Gross_volu": 656.5, "Is_Gross_v": "false", "Heated_vol": 598.9, "Ridge_mean": 13.6, "Eaves_mean": 9.13, "Storey_num": 4, "Average_St": 3.2, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.426, "Heated_are": 165.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.6, "Total_Year": 10159.0, "January_He": 1846.0, "February_H": 1284.0, "March_Heat": 811.0, "April_Heat": 196.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 25.0, "October_He": 396.0, "November_H": 1153.0, "December_H": 1819.0, "PV_potenti": 3.35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208696581227796, 48.788026940135531, 0.0 ], [ 9.208666611875922, 48.788052532762528, 0.0 ], [ 9.208586701219977, 48.78801320104386, 0.0 ], [ 9.208616669843703, 48.78798742859145, 0.0 ], [ 9.208651655756187, 48.787957330704984, 0.0 ], [ 9.208732246808708, 48.787996661145748, 0.0 ], [ 9.208696581227796, 48.788026940135531, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003408e", "Latitude": 48.79315, "Longitude": 9.19893, "X_coordina": 3514688.16, "Y_coordina": 5406205.81, "LOD": "LOD2", "Year_of_co": 1992, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 2367.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 1075.1, "Total_wall": 1301.8, "Total_wa00": 0.0, "Total_outw": 2380.0, "Total_shar": 0.0, "Total_roof": 1075.1, "Gross_volu": 8281.7, "Is_Gross_v": "false", "Heated_vol": 7399.7, "Ridge_mean": 8.3, "Eaves_mean": 8.32, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.435, "Heated_are": 2367.9, "Mean_Uvalu": 0.41, "Specific_d": "14,6", "Specific_s": 57.8, "Total_Year": 171574.0, "January_He": 30963.0, "February_H": 22912.0, "March_Heat": 16395.0, "April_Heat": 5947.0, "May_Heatin": 744.0, "June_Heati": 26, "July_Heati": 2, "August_Hea": 5, "September_": 1339.0, "October_He": 8554.0, "November_H": 20071.0, "December_H": 30023.0, "PV_potenti": 51.05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199290197020849, 48.793324726918271, 0.0 ], [ 9.199279612092978, 48.793332568587154, 0.0 ], [ 9.199304712818812, 48.793347182690283, 0.0 ], [ 9.199253689283573, 48.793385308659062, 0.0 ], [ 9.199223835229622, 48.793407661357705, 0.0 ], [ 9.19917335419921, 48.793445336734081, 0.0 ], [ 9.198642959742228, 48.793134487836689, 0.0 ], [ 9.198675120861544, 48.793110422759192, 0.0 ], [ 9.198467903406792, 48.79298902355, 0.0 ], [ 9.198487037536527, 48.792974782645572, 0.0 ], [ 9.19846180042358, 48.792959988751349, 0.0 ], [ 9.198533857948602, 48.792906180165581, 0.0 ], [ 9.198529765714643, 48.792903849207526, 0.0 ], [ 9.198547001132528, 48.792891320114393, 0.0 ], [ 9.198763359137907, 48.793018278668931, 0.0 ], [ 9.198754810373627, 48.793024767921821, 0.0 ], [ 9.198777046285523, 48.793037768460671, 0.0 ], [ 9.198823291717114, 48.793064845546169, 0.0 ], [ 9.198833062898444, 48.793057724712511, 0.0 ], [ 9.19923986200569, 48.793296128396229, 0.0 ], [ 9.199240540732141, 48.793295677604043, 0.0 ], [ 9.199290197020849, 48.793324726918271, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033ef5", "Latitude": 48.79083, "Longitude": 9.20001, "X_coordina": 3514768.31, "Y_coordina": 5405948.6, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1709.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 381.1, "Total_wall": 1259.1, "Total_wa00": 0.0, "Total_outw": 1749.2, "Total_shar": 230.3, "Total_roof": 381.1, "Gross_volu": 5718.1, "Is_Gross_v": "false", "Heated_vol": 5340.7, "Ridge_mean": 16.7, "Eaves_mean": 16.71, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 27, "Number_o00": 44, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.368, "Heated_are": 1709.0, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 31.6, "Total_Year": 81030.0, "January_He": 13293.0, "February_H": 9417.0, "March_Heat": 5980.0, "April_Heat": 1298.0, "May_Heatin": 39.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 112.0, "October_He": 2659.0, "November_H": 8188.0, "December_H": 12974.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199849065460878, 48.790831256165127, 0.0 ], [ 9.199823011694567, 48.79085054503085, 0.0 ], [ 9.19975575921028, 48.790810915471795, 0.0 ], [ 9.199779369705384, 48.790793249484949, 0.0 ], [ 9.199828625635771, 48.79075629534028, 0.0 ], [ 9.199852100342412, 48.790738719497625, 0.0 ], [ 9.199876524836064, 48.790720422612615, 0.0 ], [ 9.200004616971057, 48.790795556203229, 0.0 ], [ 9.199992676384747, 48.790804569302608, 0.0 ], [ 9.20017424184252, 48.790910723394553, 0.0 ], [ 9.200157686908161, 48.790922981781861, 0.0 ], [ 9.200133940390334, 48.79094064808222, 0.0 ], [ 9.200103951363358, 48.790962821405863, 0.0 ], [ 9.200085768259498, 48.79097634154251, 0.0 ], [ 9.20007219843647, 48.790986346640388, 0.0 ], [ 9.200009587101443, 48.790950306111284, 0.0 ], [ 9.199991132501378, 48.790964006551803, 0.0 ], [ 9.199988825675661, 48.790965719106666, 0.0 ], [ 9.199867412850226, 48.79089336154022, 0.0 ], [ 9.199894418570844, 48.790873891164914, 0.0 ], [ 9.199874498368107, 48.790861246511994, 0.0 ], [ 9.199891052636875, 48.790848808319161, 0.0 ], [ 9.199853814846934, 48.790827740901683, 0.0 ], [ 9.199849065460878, 48.790831256165127, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033ea3", "Latitude": 48.78847, "Longitude": 9.21231, "X_coordina": 3515673.18, "Y_coordina": 5405688.62, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 98.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.3, "Total_wall": 57.5, "Total_wa00": 0.0, "Total_outw": 110.2, "Total_shar": 213.7, "Total_roof": 53.4, "Gross_volu": 351.0, "Is_Gross_v": "false", "Heated_vol": 308.7, "Ridge_mean": 10.0, "Eaves_mean": 6.67, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.465, "Heated_are": 98.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 42.0, "Total_Year": 5710.0, "January_He": 1063.0, "February_H": 718.0, "March_Heat": 392.0, "April_Heat": 56.0, "May_Heatin": 1.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 6.0, "October_He": 194.0, "November_H": 671.0, "December_H": 1044.0, "PV_potenti": 1.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212272264734723, 48.788471461761986, 0.0 ], [ 9.212330113604624, 48.788474052826686, 0.0 ], [ 9.212325672875471, 48.788518213528235, 0.0 ], [ 9.212268096890254, 48.78851580180563, 0.0 ], [ 9.212209704001353, 48.78851330163593, 0.0 ], [ 9.212213599341464, 48.788468872172899, 0.0 ], [ 9.212272264734723, 48.788471461761986, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033b5f", "Latitude": 48.79517, "Longitude": 9.19374, "X_coordina": 3514306.13, "Y_coordina": 5406430.05, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 6505.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 758.7, "Total_wall": 4125.6, "Total_wa00": 0.0, "Total_outw": 4464.1, "Total_shar": 12.1, "Total_roof": 872.6, "Gross_volu": 20329.0, "Is_Gross_v": "false", "Heated_vol": 20329.0, "Ridge_mean": 25.4, "Eaves_mean": 25.4, "Storey_num": 10, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.283, "Heated_are": 6505.3, "Mean_Uvalu": 0.43, "Specific_d": "24,8", "Specific_s": 36.6, "Total_Year": 399680.0, "January_He": 54855.0, "February_H": 40063.0, "March_Heat": 27622.0, "April_Heat": 8354.0, "May_Heatin": 683.0, "June_Heati": 24, "July_Heati": 3, "August_Hea": 7, "September_": 1806.0, "October_He": 15161.0, "November_H": 36104.0, "December_H": 53407.0, "PV_potenti": 39.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193683252255781, 48.795236563867412, 0.0 ], [ 9.193624520942045, 48.795158519073894, 0.0 ], [ 9.193563682862552, 48.795081179194376, 0.0 ], [ 9.193500738128193, 48.795004571202398, 0.0 ], [ 9.193498399579287, 48.79500167959371, 0.0 ], [ 9.193495952284175, 48.794998824137124, 0.0 ], [ 9.193454251860125, 48.794949975788768, 0.0 ], [ 9.19352739207849, 48.794927821623375, 0.0 ], [ 9.193626634429647, 48.79489780017601, 0.0 ], [ 9.193657693453178, 48.794940101939673, 0.0 ], [ 9.193678642097876, 48.794968860228558, 0.0 ], [ 9.193699155781246, 48.794997763122801, 0.0 ], [ 9.193736799025574, 48.795053299527694, 0.0 ], [ 9.193772783657092, 48.795109306313179, 0.0 ], [ 9.193839749565091, 48.795222659139597, 0.0 ], [ 9.193870895407633, 48.795280328631094, 0.0 ], [ 9.193900396576611, 48.795338558408929, 0.0 ], [ 9.193927951274802, 48.7953967375025, 0.0 ], [ 9.193954080862737, 48.795455944117613, 0.0 ], [ 9.193960552044636, 48.795453981877202, 0.0 ], [ 9.193962255270476, 48.795457998590678, 0.0 ], [ 9.193905972026213, 48.795474999004277, 0.0 ], [ 9.193860157921229, 48.795489104212926, 0.0 ], [ 9.193768591982096, 48.795356800947964, 0.0 ], [ 9.193739849540448, 48.795315304631636, 0.0 ], [ 9.193683252255781, 48.795236563867412, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033a9d", "Latitude": 48.79136, "Longitude": 9.20386, "X_coordina": 3515051.2, "Y_coordina": 5406008.47, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 111.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.8, "Total_wall": 61.2, "Total_wa00": 0.0, "Total_outw": 128.4, "Total_shar": 242.7, "Total_roof": 60.4, "Gross_volu": 396.1, "Is_Gross_v": "false", "Heated_vol": 348.3, "Ridge_mean": 9.8, "Eaves_mean": 6.57, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.454, "Heated_are": 111.4, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 42.2, "Total_Year": 6467.0, "January_He": 1191.0, "February_H": 815.0, "March_Heat": 462.0, "April_Heat": 71.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 230.0, "November_H": 754.0, "December_H": 1169.0, "PV_potenti": 1.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203776848863924, 48.79135105533787, 0.0 ], [ 9.203830641775863, 48.791359592803204, 0.0 ], [ 9.203879804159318, 48.791367329129081, 0.0 ], [ 9.20386285495627, 48.791416457424546, 0.0 ], [ 9.203866532104868, 48.791417080380143, 0.0 ], [ 9.203865450985298, 48.791418970689797, 0.0 ], [ 9.20381343745283, 48.791412947952551, 0.0 ], [ 9.203754343288534, 48.791406038484013, 0.0 ], [ 9.203754746115598, 48.791404688917176, 0.0 ], [ 9.203756516458636, 48.791404955555635, 0.0 ], [ 9.203765268768381, 48.791381739778771, 0.0 ], [ 9.203776848863924, 48.79135105533787, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033940", "Latitude": 48.79174, "Longitude": 9.19788, "X_coordina": 3514611.29, "Y_coordina": 5406048.89, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 1428.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 308.8, "Total_wall": 1119.1, "Total_wa00": 0.0, "Total_outw": 1588.8, "Total_shar": 0.0, "Total_roof": 333.4, "Gross_volu": 4749.5, "Is_Gross_v": "false", "Heated_vol": 4462.5, "Ridge_mean": 16.6, "Eaves_mean": 14.06, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.386, "Heated_are": 1428.0, "Mean_Uvalu": 0.47, "Specific_d": "14,6", "Specific_s": 58.2, "Total_Year": 104038.0, "January_He": 19069.0, "February_H": 14102.0, "March_Heat": 9756.0, "April_Heat": 3168.0, "May_Heatin": 321.0, "June_Heati": 10, "July_Heati": 1, "August_Hea": 2, "September_": 694.0, "October_He": 5122.0, "November_H": 12441.0, "December_H": 18489.0, "PV_potenti": 16.06 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197893226648823, 48.791798075363424, 0.0 ], [ 9.197891316335365, 48.791796819715863, 0.0 ], [ 9.19776660621369, 48.791889475417896, 0.0 ], [ 9.197708495096126, 48.791855584082064, 0.0 ], [ 9.197650929505931, 48.791821961551172, 0.0 ], [ 9.197776587405871, 48.791728045415041, 0.0 ], [ 9.19790984362745, 48.791628360971373, 0.0 ], [ 9.197960727328523, 48.791658667687585, 0.0 ], [ 9.198012156540491, 48.791689243213973, 0.0 ], [ 9.197985291412587, 48.791710151681251, 0.0 ], [ 9.197988702331164, 48.791712303983296, 0.0 ], [ 9.197963462210302, 48.79173114140869, 0.0 ], [ 9.197959505134179, 48.791728540426767, 0.0 ], [ 9.197881206235417, 48.791786945493286, 0.0 ], [ 9.197895398193944, 48.79179654293047, 0.0 ], [ 9.197893226648823, 48.791798075363424, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033941", "Latitude": 48.79179, "Longitude": 9.19813, "X_coordina": 3514629.92, "Y_coordina": 5406054.79, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 61.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 77.6, "Total_wall": 54.2, "Total_wa00": 0.0, "Total_outw": 168.3, "Total_shar": 126.4, "Total_roof": 77.6, "Gross_volu": 214.4, "Is_Gross_v": "false", "Heated_vol": 193.4, "Ridge_mean": 2.8, "Eaves_mean": 2.77, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 1.004, "Heated_are": 61.9, "Mean_Uvalu": 0.36, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198056433154184, 48.791873510450984, 0.0 ], [ 9.197996543394314, 48.791837284305764, 0.0 ], [ 9.198113787444715, 48.791749676920467, 0.0 ], [ 9.198173947608213, 48.791785452921971, 0.0 ], [ 9.198078280431925, 48.791857106778892, 0.0 ], [ 9.198056433154184, 48.791873510450984, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003368f", "Latitude": 48.79152, "Longitude": 9.2011, "X_coordina": 3514848.3, "Y_coordina": 5406025.14, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 570.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 116.2, "Total_wall": 329.2, "Total_wa00": 0.0, "Total_outw": 421.5, "Total_shar": 549.5, "Total_roof": 116.2, "Gross_volu": 1782.7, "Is_Gross_v": "false", "Heated_vol": 1782.7, "Ridge_mean": 15.4, "Eaves_mean": 15.35, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 7, "Number_o00": 15, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.315, "Heated_are": 570.5, "Mean_Uvalu": 0.36, "Specific_d": "15,8", "Specific_s": 29.3, "Total_Year": 25776.0, "January_He": 4031.0, "February_H": 2921.0, "March_Heat": 1958.0, "April_Heat": 492.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 870.0, "November_H": 2513.0, "December_H": 3900.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201035012771207, 48.791617282415856, 0.0 ], [ 9.201016459421732, 48.791606254200559, 0.0 ], [ 9.201012850500071, 48.79158863547395, 0.0 ], [ 9.200996616915996, 48.791579131907405, 0.0 ], [ 9.200970077340555, 48.79157899837957, 0.0 ], [ 9.200948933155235, 48.791566715744345, 0.0 ], [ 9.201042699320416, 48.791497310909328, 0.0 ], [ 9.201090057565423, 48.791462337862342, 0.0 ], [ 9.201093877248121, 48.791464579282412, 0.0 ], [ 9.201081936339527, 48.791473502570568, 0.0 ], [ 9.201110720247829, 48.791490357943673, 0.0 ], [ 9.201108820647457, 48.791491800038806, 0.0 ], [ 9.201130238111428, 48.791504351938372, 0.0 ], [ 9.20113213771165, 48.791502909842905, 0.0 ], [ 9.201163650055021, 48.791521379062118, 0.0 ], [ 9.201035012771207, 48.791617282415856, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000335e9", "Latitude": 48.7877, "Longitude": 9.19737, "X_coordina": 3514575.35, "Y_coordina": 5405599.91, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 936.8, "SecondaryU": "office and administration", "Secondar00": 213.0, "BuildingTy": "MFH", "Footprint_": 266.2, "Total_wall": 735.8, "Total_wa00": 0.0, "Total_outw": 995.3, "Total_shar": 226.0, "Total_roof": 266.2, "Gross_volu": 3755.2, "Is_Gross_v": "false", "Heated_vol": 3592.9, "Ridge_mean": 14.1, "Eaves_mean": 14.11, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 14, "Number_o00": 26, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.347, "Heated_are": 1149.7, "Mean_Uvalu": 0.4, "Specific_d": "15,6", "Specific_s": 40.9, "Total_Year": 64960.0, "January_He": 10508.0, "February_H": 8017.0, "March_Heat": 5878.0, "April_Heat": 2061.0, "May_Heatin": 140.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 340.0, "October_He": 2986.0, "November_H": 6959.0, "December_H": 10120.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197277360036527, 48.787661296156614, 0.0 ], [ 9.197332031747832, 48.787617589505814, 0.0 ], [ 9.197333795577327, 48.787616237628292, 0.0 ], [ 9.197482041480969, 48.787697634180667, 0.0 ], [ 9.197428726796609, 48.787740349415181, 0.0 ], [ 9.197375411316512, 48.787782884778736, 0.0 ], [ 9.19738154860976, 48.787786291358437, 0.0 ], [ 9.197379106459222, 48.787788183941288, 0.0 ], [ 9.19732836842268, 48.787828646620675, 0.0 ], [ 9.197171120598044, 48.787742139637324, 0.0 ], [ 9.1971716638866, 48.787741868936109, 0.0 ], [ 9.197224708380427, 48.787699603901615, 0.0 ], [ 9.197227436096327, 48.787701127932138, 0.0 ], [ 9.197277360036527, 48.787661296156614, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000335ea", "Latitude": 48.78767, "Longitude": 9.19725, "X_coordina": 3514566.59, "Y_coordina": 5405596.52, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 30.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 38.3, "Total_wall": 46.4, "Total_wa00": 0.0, "Total_outw": 138.7, "Total_shar": 89.8, "Total_roof": 38.3, "Gross_volu": 123.4, "Is_Gross_v": "false", "Heated_vol": 95.9, "Ridge_mean": 3.2, "Eaves_mean": 3.22, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 1.104, "Heated_are": 30.7, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197244897169584, 48.787642377872494, 0.0 ], [ 9.197277360036527, 48.787661296156614, 0.0 ], [ 9.197227436096327, 48.787701127932138, 0.0 ], [ 9.197224708380427, 48.787699603901615, 0.0 ], [ 9.1971716638866, 48.787741868936109, 0.0 ], [ 9.197137298264526, 48.787723583345532, 0.0 ], [ 9.197244897169584, 48.787642377872494, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000335ed", "Latitude": 48.78762, "Longitude": 9.19747, "X_coordina": 3514583.0, "Y_coordina": 5405590.48, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 106.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 115.4, "Total_wall": 64.7, "Total_wa00": 0.0, "Total_outw": 244.1, "Total_shar": 109.6, "Total_roof": 115.4, "Gross_volu": 207.9, "Is_Gross_v": "false", "Heated_vol": 207.9, "Ridge_mean": 1.8, "Eaves_mean": 1.81, "Storey_num": 1, "Average_St": 1.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.422, "Heated_are": 106.7, "Mean_Uvalu": 0.34, "Specific_d": "14,6", "Specific_s": 53.0, "Total_Year": 7210.0, "January_He": 1353.0, "February_H": 950.0, "March_Heat": 624.0, "April_Heat": 189.0, "May_Heatin": 19.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 37.0, "October_He": 316.0, "November_H": 836.0, "December_H": 1326.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197560468993148, 48.787673490038742, 0.0 ], [ 9.197513272990427, 48.787714845960217, 0.0 ], [ 9.197482041480969, 48.787697634180667, 0.0 ], [ 9.197333795577327, 48.787616237628292, 0.0 ], [ 9.197332031747832, 48.787617589505814, 0.0 ], [ 9.197300120988247, 48.787600648611644, 0.0 ], [ 9.197353988088272, 48.787560000733144, 0.0 ], [ 9.197560468993148, 48.787673490038742, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003354a", "Latitude": 48.78865, "Longitude": 9.2123, "X_coordina": 3515671.89, "Y_coordina": 5405708.2, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 87.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.5, "Total_wall": 48.8, "Total_wa00": 0.0, "Total_outw": 107.5, "Total_shar": 212.7, "Total_roof": 52.7, "Gross_volu": 314.0, "Is_Gross_v": "false", "Heated_vol": 272.5, "Ridge_mean": 9.3, "Eaves_mean": 5.93, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.487, "Heated_are": 87.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.7, "Total_Year": 5456.0, "January_He": 1020.0, "February_H": 704.0, "March_Heat": 408.0, "April_Heat": 70.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 208.0, "November_H": 654.0, "December_H": 999.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212251555461243, 48.788691722957353, 0.0 ], [ 9.212193161990022, 48.788689132856753, 0.0 ], [ 9.212197467519557, 48.788645152258077, 0.0 ], [ 9.212255725609801, 48.788647922453343, 0.0 ], [ 9.212312894617469, 48.788650604703328, 0.0 ], [ 9.212308723759737, 48.788694225363422, 0.0 ], [ 9.212251555461243, 48.788691722957353, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000333da", "Latitude": 48.79519, "Longitude": 9.20743, "X_coordina": 3515312.01, "Y_coordina": 5406434.53, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1336.1, "SecondaryU": "retail", "Secondar00": 155.5, "BuildingTy": "GMH", "Footprint_": 194.4, "Total_wall": 1252.4, "Total_wa00": 0.0, "Total_outw": 1530.2, "Total_shar": 0.0, "Total_roof": 194.5, "Gross_volu": 4126.6, "Is_Gross_v": "false", "Heated_vol": 4126.6, "Ridge_mean": 22.4, "Eaves_mean": 22.42, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 24, "Number_o00": 45, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.398, "Heated_are": 1491.6, "Mean_Uvalu": 0.41, "Specific_d": "21,8", "Specific_s": 30.4, "Total_Year": 77804.0, "January_He": 11444.0, "February_H": 7927.0, "March_Heat": 4765.0, "April_Heat": 895.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 72.0, "October_He": 2019.0, "November_H": 6944.0, "December_H": 11199.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207496720616069, 48.795163017621547, 0.0 ], [ 9.207487031834683, 48.795189922219414, 0.0 ], [ 9.207452853810553, 48.795285302753911, 0.0 ], [ 9.207398512038321, 48.795276857896624, 0.0 ], [ 9.207268309259133, 48.795256499819644, 0.0 ], [ 9.207293472962741, 48.7951864940066, 0.0 ], [ 9.207312177970191, 48.795134574447736, 0.0 ], [ 9.207321303017858, 48.795135996797228, 0.0 ], [ 9.207496720616069, 48.795163017621547, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033327", "Latitude": 48.79089, "Longitude": 9.19914, "X_coordina": 3514704.17, "Y_coordina": 5405955.27, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2111, "PrimaryUsa": "industry", "PrimaryU00": 1668.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 386.2, "Total_wall": 1171.0, "Total_wa00": 0.0, "Total_outw": 1596.1, "Total_shar": 218.4, "Total_roof": 386.2, "Gross_volu": 5329.8, "Is_Gross_v": "false", "Heated_vol": 5213.2, "Ridge_mean": 13.8, "Eaves_mean": 13.8, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.37, "Heated_are": 1668.2, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 5.4, "Total_Year": 63792.0, "January_He": 3276.0, "February_H": 1574.0, "March_Heat": 357.0, "April_Heat": 11.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 20.0, "November_H": 751.0, "December_H": 2986.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199042991152853, 48.790836339119146, 0.0 ], [ 9.199041905951988, 48.790837240231021, 0.0 ], [ 9.199069462183289, 48.790853648619638, 0.0 ], [ 9.199077468650543, 48.790847789743722, 0.0 ], [ 9.199079514696438, 48.790848955213569, 0.0 ], [ 9.199112897579525, 48.790824528197597, 0.0 ], [ 9.199110851533854, 48.790823362728332, 0.0 ], [ 9.19911695800347, 48.790818855989045, 0.0 ], [ 9.199119004049106, 48.790820021458195, 0.0 ], [ 9.199133795666269, 48.790809205046955, 0.0 ], [ 9.199154015046732, 48.790794332684335, 0.0 ], [ 9.199151969001335, 48.790793167215789, 0.0 ], [ 9.199158889895768, 48.790788119524095, 0.0 ], [ 9.199160936297009, 48.790789374915519, 0.0 ], [ 9.199165957560487, 48.790785769286593, 0.0 ], [ 9.199276450914253, 48.790850413058905, 0.0 ], [ 9.199270615932452, 48.790854739489625, 0.0 ], [ 9.199273480688246, 48.790856443080983, 0.0 ], [ 9.199266559795957, 48.790861490779513, 0.0 ], [ 9.199263694684021, 48.79085969726497, 0.0 ], [ 9.199228684053129, 48.79088547599482, 0.0 ], [ 9.199231548453238, 48.790887089664238, 0.0 ], [ 9.199225441985634, 48.790891596409537, 0.0 ], [ 9.199222577229456, 48.790889892816992, 0.0 ], [ 9.19918946761412, 48.790914589162625, 0.0 ], [ 9.199191923373904, 48.790916113616234, 0.0 ], [ 9.19918405264816, 48.790921882341628, 0.0 ], [ 9.199212017613016, 48.790938379912554, 0.0 ], [ 9.199213916890981, 48.790936847925501, 0.0 ], [ 9.199220192212275, 48.79094061386116, 0.0 ], [ 9.199218156483367, 48.790942056160745, 0.0 ], [ 9.199246257921683, 48.790958643410818, 0.0 ], [ 9.199270512750743, 48.790966155025473, 0.0 ], [ 9.199199641520419, 48.791043701871722, 0.0 ], [ 9.199164065133592, 48.791029735323498, 0.0 ], [ 9.199159017509528, 48.791026686650497, 0.0 ], [ 9.199037468919975, 48.790954148598125, 0.0 ], [ 9.199017005942702, 48.790941864429776, 0.0 ], [ 9.198930790210586, 48.790890487167935, 0.0 ], [ 9.198907598990669, 48.790876589067935, 0.0 ], [ 9.198998519017399, 48.790809798588825, 0.0 ], [ 9.199005340107835, 48.790813923287573, 0.0 ], [ 9.199004254551156, 48.790814734476101, 0.0 ], [ 9.199035085211072, 48.790833205457467, 0.0 ], [ 9.199036306506677, 48.790832304110438, 0.0 ], [ 9.199042991152853, 48.790836339119146, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033328", "Latitude": 48.79075, "Longitude": 9.19916, "X_coordina": 3514705.71, "Y_coordina": 5405939.79, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2111, "PrimaryUsa": "industry", "PrimaryU00": 23.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 25.4, "Total_wall": 33.3, "Total_wa00": 0.0, "Total_outw": 113.9, "Total_shar": 56.9, "Total_roof": 25.4, "Gross_volu": 57.2, "Is_Gross_v": "false", "Heated_vol": 57.2, "Ridge_mean": 2.3, "Eaves_mean": 2.26, "Storey_num": 1, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.468, "Heated_are": 23.0, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 24.9, "Total_Year": 1330.0, "January_He": 183.0, "February_H": 95.0, "March_Heat": 34.0, "April_Heat": 3.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 6.0, "November_H": 71.0, "December_H": 180.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19909052400102, 48.7907421069253, 0.0 ], [ 9.199165957560487, 48.790785769286593, 0.0 ], [ 9.199160936297009, 48.790789374915519, 0.0 ], [ 9.199158889895768, 48.790788119524095, 0.0 ], [ 9.199151969001335, 48.790793167215789, 0.0 ], [ 9.199154015046732, 48.790794332684335, 0.0 ], [ 9.199133795666269, 48.790809205046955, 0.0 ], [ 9.199059449077058, 48.790765091167778, 0.0 ], [ 9.19909052400102, 48.7907421069253, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000332e8", "Latitude": 48.78802, "Longitude": 9.19608, "X_coordina": 3514480.76, "Y_coordina": 5405635.15, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 971.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 171.7, "Total_wall": 910.6, "Total_wa00": 0.0, "Total_outw": 1253.6, "Total_shar": 9.1, "Total_roof": 238.0, "Gross_volu": 3208.4, "Is_Gross_v": "false", "Heated_vol": 3036.7, "Ridge_mean": 21.1, "Eaves_mean": 13.52, "Storey_num": 7, "Average_St": 2.9, "Number_of_": 16, "Number_o00": 24, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.428, "Heated_are": 971.7, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 39.4, "Total_Year": 53643.0, "January_He": 9559.0, "February_H": 6671.0, "March_Heat": 3963.0, "April_Heat": 723.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 78.0, "October_He": 1866.0, "November_H": 5954.0, "December_H": 9416.0, "PV_potenti": 10.14 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196072827863514, 48.787969093849256, 0.0 ], [ 9.196092165880829, 48.787972567943633, 0.0 ], [ 9.196112965340783, 48.788001847635961, 0.0 ], [ 9.196132991168398, 48.788007208948926, 0.0 ], [ 9.196144898036611, 48.788024454010774, 0.0 ], [ 9.196138011563855, 48.788038313983769, 0.0 ], [ 9.196161275369503, 48.788071366263225, 0.0 ], [ 9.196166065062819, 48.788078192302045, 0.0 ], [ 9.196164977766596, 48.788078553848884, 0.0 ], [ 9.196103401708578, 48.788097003152814, 0.0 ], [ 9.19606330218839, 48.78810894135637, 0.0 ], [ 9.196046854883503, 48.788113915159656, 0.0 ], [ 9.196014422149098, 48.788067749610931, 0.0 ], [ 9.19600001406055, 48.788072180394494, 0.0 ], [ 9.195962498793602, 48.788083754469795, 0.0 ], [ 9.19591514653775, 48.788015493061117, 0.0 ], [ 9.195953615774952, 48.78800427707241, 0.0 ], [ 9.195963810751349, 48.788001292242853, 0.0 ], [ 9.19602144582411, 48.787984288500319, 0.0 ], [ 9.196031640792427, 48.787981303664786, 0.0 ], [ 9.196072827863514, 48.787969093849256, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033291", "Latitude": 48.78816, "Longitude": 9.21252, "X_coordina": 3515688.08, "Y_coordina": 5405654.4, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 639.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 158.1, "Total_wall": 378.2, "Total_wa00": 0.0, "Total_outw": 582.7, "Total_shar": 310.3, "Total_roof": 229.7, "Gross_volu": 2124.8, "Is_Gross_v": "false", "Heated_vol": 1999.4, "Ridge_mean": 15.8, "Eaves_mean": 11.1, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 8, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.374, "Heated_are": 639.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 38.1, "Total_Year": 34503.0, "January_He": 5886.0, "February_H": 4160.0, "March_Heat": 2754.0, "April_Heat": 775.0, "May_Heatin": 34.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 83.0, "October_He": 1243.0, "November_H": 3649.0, "December_H": 5785.0, "PV_potenti": 10.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212366767321717, 48.788130117176692, 0.0 ], [ 9.212601656154822, 48.788162415995707, 0.0 ], [ 9.212591206949613, 48.788201642000871, 0.0 ], [ 9.212580621640642, 48.788240868256082, 0.0 ], [ 9.21234096825426, 48.788208308408862, 0.0 ], [ 9.212353867987661, 48.788169257755087, 0.0 ], [ 9.212366767321717, 48.788130117176692, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003312e", "Latitude": 48.78868, "Longitude": 9.21065, "X_coordina": 3515550.56, "Y_coordina": 5405711.7, "LOD": "LOD2", "Year_of_co": 1925, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 111.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 48.6, "Total_wall": 131.2, "Total_wa00": 0.0, "Total_outw": 267.1, "Total_shar": 106.5, "Total_roof": 64.6, "Gross_volu": 396.1, "Is_Gross_v": "false", "Heated_vol": 347.5, "Ridge_mean": 9.9, "Eaves_mean": 6.47, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.667, "Heated_are": 111.2, "Mean_Uvalu": 0.54, "Specific_d": "15,8", "Specific_s": 62.0, "Total_Year": 8655.0, "January_He": 1714.0, "February_H": 1182.0, "March_Heat": 696.0, "April_Heat": 131.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 20.0, "October_He": 359.0, "November_H": 1108.0, "December_H": 1679.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210552107769958, 48.788734409047294, 0.0 ], [ 9.210551823553516, 48.788731532010161, 0.0 ], [ 9.210548102785097, 48.788687925842609, 0.0 ], [ 9.210547244118224, 48.788677855963662, 0.0 ], [ 9.21059922250692, 48.7886759624474, 0.0 ], [ 9.210652017047877, 48.788673977491143, 0.0 ], [ 9.210656880816847, 48.788730530570206, 0.0 ], [ 9.21060395012789, 48.788732515777646, 0.0 ], [ 9.210552107769958, 48.788734409047294, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00033051", "Latitude": 48.79238, "Longitude": 9.19839, "X_coordina": 3514648.63, "Y_coordina": 5406120.88, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 134.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 48.7, "Total_wall": 71.7, "Total_wa00": 0.0, "Total_outw": 147.8, "Total_shar": 322.7, "Total_roof": 77.9, "Gross_volu": 470.3, "Is_Gross_v": "false", "Heated_vol": 421.6, "Ridge_mean": 12.5, "Eaves_mean": 6.49, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.448, "Heated_are": 134.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.4, "Total_Year": 7859.0, "January_He": 1407.0, "February_H": 983.0, "March_Heat": 615.0, "April_Heat": 130.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 303.0, "November_H": 888.0, "December_H": 1377.0, "PV_potenti": 2.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19832209262588, 48.792459355070072, 0.0 ], [ 9.198318136182763, 48.79245693394688, 0.0 ], [ 9.198319357530517, 48.792456032607625, 0.0 ], [ 9.198279115105612, 48.792432452001137, 0.0 ], [ 9.198277893757712, 48.792433353339966, 0.0 ], [ 9.198273937673093, 48.792431022138217, 0.0 ], [ 9.198316414043859, 48.792399835433152, 0.0 ], [ 9.19834396273116, 48.792379645102592, 0.0 ], [ 9.198365811906614, 48.792363690992161, 0.0 ], [ 9.19838250384924, 48.792351432629367, 0.0 ], [ 9.198399690591508, 48.792361114767871, 0.0 ], [ 9.198378385468937, 48.79237697802391, 0.0 ], [ 9.198406077363822, 48.792393116562344, 0.0 ], [ 9.198407298353887, 48.79239212529918, 0.0 ], [ 9.19841057252866, 48.792394097976889, 0.0 ], [ 9.198364296792581, 48.792428168816301, 0.0 ], [ 9.19832209262588, 48.792459355070072, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00032dcc", "Latitude": 48.79106, "Longitude": 9.20881, "X_coordina": 3515414.81, "Y_coordina": 5405976.0, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 124.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 48.9, "Total_wall": 69.4, "Total_wa00": 0.0, "Total_outw": 131.4, "Total_shar": 222.9, "Total_roof": 68.1, "Gross_volu": 398.5, "Is_Gross_v": "false", "Heated_vol": 389.5, "Ridge_mean": 10.2, "Eaves_mean": 6.07, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.473, "Heated_are": 124.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.9, "Total_Year": 7195.0, "January_He": 1297.0, "February_H": 887.0, "March_Heat": 555.0, "April_Heat": 139.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 249.0, "November_H": 788.0, "December_H": 1285.0, "PV_potenti": 3.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208736711641329, 48.791041827097906, 0.0 ], [ 9.208814464529089, 48.791051937430801, 0.0 ], [ 9.208802915556179, 48.791089366594306, 0.0 ], [ 9.208791501915419, 48.791126615663821, 0.0 ], [ 9.208714562878511, 48.791115874375258, 0.0 ], [ 9.208725569779844, 48.79107898574496, 0.0 ], [ 9.208736711641329, 48.791041827097906, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00032d29", "Latitude": 48.78757, "Longitude": 9.20846, "X_coordina": 3515390.16, "Y_coordina": 5405587.19, "LOD": "LOD2", "Year_of_co": 1922, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 820.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 165.1, "Total_wall": 415.1, "Total_wa00": 0.0, "Total_outw": 513.0, "Total_shar": 405.0, "Total_roof": 199.7, "Gross_volu": 2587.4, "Is_Gross_v": "false", "Heated_vol": 2562.4, "Ridge_mean": 17.6, "Eaves_mean": 13.78, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 13, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.303, "Heated_are": 820.0, "Mean_Uvalu": 0.57, "Specific_d": "15,8", "Specific_s": 36.0, "Total_Year": 42516.0, "January_He": 7047.0, "February_H": 5065.0, "March_Heat": 3427.0, "April_Heat": 973.0, "May_Heatin": 43.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 103.0, "October_He": 1564.0, "November_H": 4411.0, "December_H": 6895.0, "PV_potenti": 9.96 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208512751722772, 48.787606070690387, 0.0 ], [ 9.208497427171348, 48.787651779659193, 0.0 ], [ 9.208299163097733, 48.787622463636822, 0.0 ], [ 9.208314895705607, 48.787576664032365, 0.0 ], [ 9.208332510034511, 48.787525195830163, 0.0 ], [ 9.208529957602293, 48.787554603197805, 0.0 ], [ 9.208512751722772, 48.787606070690387, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00032cb0", "Latitude": 48.79364, "Longitude": 9.20162, "X_coordina": 3514886.11, "Y_coordina": 5406261.4, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1541.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 319.8, "Total_wall": 1104.5, "Total_wa00": 0.0, "Total_outw": 1507.5, "Total_shar": 261.0, "Total_roof": 319.8, "Gross_volu": 5137.0, "Is_Gross_v": "false", "Heated_vol": 4817.2, "Ridge_mean": 19.0, "Eaves_mean": 18.99, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 25, "Number_o00": 47, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.353, "Heated_are": 1541.5, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 36.9, "Total_Year": 81244.0, "January_He": 13617.0, "February_H": 9979.0, "March_Heat": 6475.0, "April_Heat": 1415.0, "May_Heatin": 40.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 152.0, "October_He": 3109.0, "November_H": 8801.0, "December_H": 13239.0, "PV_potenti": 14.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201664201803487, 48.793691079138398, 0.0 ], [ 9.201660246184273, 48.793688927899709, 0.0 ], [ 9.201640839036502, 48.793702810113025, 0.0 ], [ 9.201645067221234, 48.793705050798685, 0.0 ], [ 9.201573138622564, 48.793756523083964, 0.0 ], [ 9.201536443827534, 48.793735814964364, 0.0 ], [ 9.201473348064781, 48.793783854632863, 0.0 ], [ 9.201385220962155, 48.79373284227016, 0.0 ], [ 9.201641968726957, 48.793543193795202, 0.0 ], [ 9.201773617994521, 48.7936204773208, 0.0 ], [ 9.201738064129424, 48.79364670737025, 0.0 ], [ 9.201730421851899, 48.79364159511448, 0.0 ], [ 9.201664201803487, 48.793691079138398, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000328db", "Latitude": 48.7876, "Longitude": 9.21065, "X_coordina": 3515551.33, "Y_coordina": 5405590.92, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 2141.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 357.3, "Total_wall": 1073.9, "Total_wa00": 0.0, "Total_outw": 1243.0, "Total_shar": 0.0, "Total_roof": 478.4, "Gross_volu": 7048.2, "Is_Gross_v": "true", "Heated_vol": 6691.0, "Ridge_mean": 18.2, "Eaves_mean": 12.67, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 34, "Number_o00": 52, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.281, "Heated_are": 2141.1, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 25.6, "Total_Year": 88785.0, "January_He": 13751.0, "February_H": 9702.0, "March_Heat": 6023.0, "April_Heat": 1153.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 68.0, "October_He": 2400.0, "November_H": 8357.0, "December_H": 13397.0, "PV_potenti": 16.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210473737751844, 48.787585392506166, 19.47 ], [ 9.210677372984097, 48.78761567819609, 19.47 ], [ 9.210690119253748, 48.787578257440259, 19.47 ], [ 9.210730930713531, 48.787584327089519, 19.47 ], [ 9.210710194082559, 48.787645206163567, 19.47 ], [ 9.210465747267163, 48.78760885081229, 19.47 ], [ 9.210473737751844, 48.787585392506166, 19.47 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000328db", "Latitude": 48.7876, "Longitude": 9.21065, "X_coordina": 3515551.33, "Y_coordina": 5405590.92, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 2141.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 357.3, "Total_wall": 1073.9, "Total_wa00": 0.0, "Total_outw": 1243.0, "Total_shar": 0.0, "Total_roof": 478.4, "Gross_volu": 7048.2, "Is_Gross_v": "true", "Heated_vol": 6691.0, "Ridge_mean": 18.2, "Eaves_mean": 12.67, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 34, "Number_o00": 52, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.281, "Heated_are": 2141.1, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 25.6, "Total_Year": 88785.0, "January_He": 13751.0, "February_H": 9702.0, "March_Heat": 6023.0, "April_Heat": 1153.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 68.0, "October_He": 2400.0, "November_H": 8357.0, "December_H": 13397.0, "PV_potenti": 16.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210423144642142, 48.787639734300505, 0.0 ], [ 9.21043450004977, 48.787606397417065, 0.0 ], [ 9.210427861806695, 48.787605410135384, 0.0 ], [ 9.210439366630025, 48.787571634618345, 0.0 ], [ 9.210446004868871, 48.787572621899379, 0.0 ], [ 9.210455268469945, 48.787545426018511, 0.0 ], [ 9.210635828720411, 48.787572279946048, 0.0 ], [ 9.210643448698114, 48.787549909132103, 0.0 ], [ 9.210791481628913, 48.787571925181709, 0.0 ], [ 9.21075673745486, 48.787673928219895, 0.0 ], [ 9.210727840716446, 48.787685050227182, 0.0 ], [ 9.210423144642142, 48.787639734300505, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000328dc", "Latitude": 48.78745, "Longitude": 9.21057, "X_coordina": 3515545.2, "Y_coordina": 5405574.95, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 21.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 26.9, "Total_wall": 58.0, "Total_wa00": 0.0, "Total_outw": 83.5, "Total_shar": 0.0, "Total_roof": 26.9, "Gross_volu": 92.4, "Is_Gross_v": "false", "Heated_vol": 66.4, "Ridge_mean": 3.5, "Eaves_mean": 3.47, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.452, "Heated_are": 21.3, "Mean_Uvalu": 0.36, "Specific_d": "non calculated", "Specific_s": 109.7, "Total_Year": 2333.0, "January_He": 530.0, "February_H": 381.0, "March_Heat": 260.0, "April_Heat": 84.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 22.0, "October_He": 160.0, "November_H": 362.0, "December_H": 525.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210490094209833, 48.787508323394874, 0.0 ], [ 9.210515234175995, 48.787434629956174, 0.0 ], [ 9.210557719537992, 48.787440936865053, 0.0 ], [ 9.210532579630897, 48.787514630312835, 0.0 ], [ 9.210490094209833, 48.787508323394874, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000328d8", "Latitude": 48.78788, "Longitude": 9.19356, "X_coordina": 3514295.53, "Y_coordina": 5405619.42, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 2080.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 296.4, "Total_wall": 1418.0, "Total_wa00": 0.0, "Total_outw": 1836.6, "Total_shar": 0.0, "Total_roof": 436.2, "Gross_volu": 6796.7, "Is_Gross_v": "false", "Heated_vol": 6500.3, "Ridge_mean": 24.2, "Eaves_mean": 18.87, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 38, "Number_o00": 54, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.327, "Heated_are": 2080.1, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 33.7, "Total_Year": 103140.0, "January_He": 17172.0, "February_H": 12171.0, "March_Heat": 7825.0, "April_Heat": 1766.0, "May_Heatin": 52.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 169.0, "October_He": 3558.0, "November_H": 10721.0, "December_H": 16759.0, "PV_potenti": 17.31 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19364870367601, 48.787900807346247, 0.0 ], [ 9.193666533818414, 48.787901496749953, 0.0 ], [ 9.193692720633157, 48.787916559880486, 0.0 ], [ 9.193585250110402, 48.787997402122144, 0.0 ], [ 9.193345740858131, 48.787857163910715, 0.0 ], [ 9.193360204013521, 48.787831601306131, 0.0 ], [ 9.193371557894427, 48.78781143934058, 0.0 ], [ 9.193641189705074, 48.787822496473694, 0.0 ], [ 9.193635205476866, 48.787894175693985, 0.0 ], [ 9.19364870367601, 48.787900807346247, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000328d9", "Latitude": 48.78783, "Longitude": 9.19374, "X_coordina": 3514308.63, "Y_coordina": 5405613.54, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 41.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 22.3, "Total_wall": 54.1, "Total_wa00": 0.0, "Total_outw": 123.9, "Total_shar": 47.0, "Total_roof": 22.3, "Gross_volu": 85.7, "Is_Gross_v": "false", "Heated_vol": 85.7, "Ridge_mean": 3.9, "Eaves_mean": 3.86, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.153, "Heated_are": 41.0, "Mean_Uvalu": 0.48, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193725985857029, 48.787826040720006, 0.0 ], [ 9.193721003907044, 48.787875237343528, 0.0 ], [ 9.193719779126249, 48.787875239403938, 0.0 ], [ 9.193719518721617, 48.787878297246472, 0.0 ], [ 9.193668750053551, 48.787876224474175, 0.0 ], [ 9.193673584201978, 48.787823970697033, 0.0 ], [ 9.193725985857029, 48.787826040720006, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00032862", "Latitude": 48.78869, "Longitude": 9.20943, "X_coordina": 3515461.12, "Y_coordina": 5405711.87, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 83.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 39.9, "Total_wall": 48.1, "Total_wa00": 0.0, "Total_outw": 112.6, "Total_shar": 206.7, "Total_roof": 53.2, "Gross_volu": 300.3, "Is_Gross_v": "false", "Heated_vol": 260.4, "Ridge_mean": 9.3, "Eaves_mean": 5.72, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.504, "Heated_are": 83.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.6, "Total_Year": 5117.0, "January_He": 966.0, "February_H": 655.0, "March_Heat": 366.0, "April_Heat": 58.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 185.0, "November_H": 611.0, "December_H": 949.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209384574543954, 48.788730243115175, 0.0 ], [ 9.209331643803271, 48.788732227738357, 0.0 ], [ 9.20933078463074, 48.788721978004062, 0.0 ], [ 9.209328057187724, 48.788687901898491, 0.0 ], [ 9.20938098750786, 48.788685827354065, 0.0 ], [ 9.209437183580729, 48.78868365692243, 0.0 ], [ 9.209441587573993, 48.788728161119693, 0.0 ], [ 9.209384574543954, 48.788730243115175, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000327e4", "Latitude": 48.78845, "Longitude": 9.20071, "X_coordina": 3514820.56, "Y_coordina": 5405683.85, "LOD": "LOD2", "Year_of_co": 1910, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 916.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 147.4, "Total_wall": 737.9, "Total_wa00": 0.0, "Total_outw": 1033.6, "Total_shar": 298.1, "Total_roof": 202.4, "Gross_volu": 2967.5, "Is_Gross_v": "false", "Heated_vol": 2863.4, "Ridge_mean": 23.2, "Eaves_mean": 15.21, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 17, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.377, "Heated_are": 916.3, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 41.5, "Total_Year": 52570.0, "January_He": 9335.0, "February_H": 6629.0, "March_Heat": 4100.0, "April_Heat": 778.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 94.0, "October_He": 2010.0, "November_H": 5967.0, "December_H": 9122.0, "PV_potenti": 5.54 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200633333353132, 48.788428931411097, 0.0 ], [ 9.200695737588404, 48.788413715495857, 0.0 ], [ 9.200704373541939, 48.788429347160317, 0.0 ], [ 9.200755765377101, 48.788416848114956, 0.0 ], [ 9.200769089102327, 48.788413587635063, 0.0 ], [ 9.200789237210561, 48.788449432043649, 0.0 ], [ 9.200775777388914, 48.788452692763116, 0.0 ], [ 9.200790581118, 48.788479284352874, 0.0 ], [ 9.200738917768508, 48.788491963734224, 0.0 ], [ 9.20058637464712, 48.788529368011446, 0.0 ], [ 9.200570569032399, 48.78852453966433, 0.0 ], [ 9.200564538135822, 48.788513759330158, 0.0 ], [ 9.200571709608052, 48.7885034056197, 0.0 ], [ 9.200542514230305, 48.788451120901065, 0.0 ], [ 9.200633333353132, 48.788428931411097, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003250d", "Latitude": 48.7917, "Longitude": 9.20336, "X_coordina": 3515014.62, "Y_coordina": 5406046.02, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 640.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 156.4, "Total_wall": 335.7, "Total_wa00": 0.0, "Total_outw": 535.1, "Total_shar": 434.1, "Total_roof": 183.1, "Gross_volu": 2157.2, "Is_Gross_v": "false", "Heated_vol": 2000.8, "Ridge_mean": 15.4, "Eaves_mean": 12.13, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 8, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.327, "Heated_are": 640.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 34.2, "Total_Year": 32014.0, "January_He": 5429.0, "February_H": 3838.0, "March_Heat": 2332.0, "April_Heat": 394.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 1102.0, "November_H": 3458.0, "December_H": 5276.0, "PV_potenti": 9.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203329769990681, 48.791654168752558, 0.0 ], [ 9.203407789855142, 48.791663023330273, 0.0 ], [ 9.203372278034578, 48.791800129619176, 0.0 ], [ 9.203296573070347, 48.791791630625397, 0.0 ], [ 9.203299789996095, 48.791779395336611, 0.0 ], [ 9.203299381704424, 48.7917793960574, 0.0 ], [ 9.203233480140261, 48.791771958798087, 0.0 ], [ 9.203266864170027, 48.791647085917134, 0.0 ], [ 9.203329769990681, 48.791654168752558, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00032423", "Latitude": 48.78911, "Longitude": 9.19952, "X_coordina": 3514732.55, "Y_coordina": 5405756.98, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 633.2, "SecondaryU": "retail", "Secondar00": 136.8, "BuildingTy": "GMH", "Footprint_": 171.1, "Total_wall": 558.4, "Total_wa00": 0.0, "Total_outw": 811.6, "Total_shar": 337.9, "Total_roof": 261.2, "Gross_volu": 2837.7, "Is_Gross_v": "false", "Heated_vol": 2666.6, "Ridge_mean": 19.2, "Eaves_mean": 12.89, "Storey_num": 6, "Average_St": 3.0, "Number_of_": 12, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.364, "Heated_are": 770.1, "Mean_Uvalu": 0.49, "Specific_d": "26,0", "Specific_s": 42.2, "Total_Year": 52498.0, "January_He": 7940.0, "February_H": 5584.0, "March_Heat": 3554.0, "April_Heat": 790.0, "May_Heatin": 29.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 107.0, "October_He": 1719.0, "November_H": 5011.0, "December_H": 7744.0, "PV_potenti": 11.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19938944995128, 48.789108666552721, 0.0 ], [ 9.199390843986102, 48.789117027037662, 0.0 ], [ 9.19943601947258, 48.789115330182739, 0.0 ], [ 9.199431312905167, 48.789060934530333, 0.0 ], [ 9.199486963698188, 48.789058320277029, 0.0 ], [ 9.19951295223535, 48.789057106246403, 0.0 ], [ 9.199544791923701, 48.789055702223784, 0.0 ], [ 9.199557613753942, 48.789200367144424, 0.0 ], [ 9.199394465369551, 48.789206674637306, 0.0 ], [ 9.199390193117329, 48.789158842657855, 0.0 ], [ 9.199385639786406, 48.789108763073472, 0.0 ], [ 9.19938944995128, 48.789108666552721, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000323b7", "Latitude": 48.7919, "Longitude": 9.19878, "X_coordina": 3514677.65, "Y_coordina": 5406067.35, "LOD": "LOD2", "Year_of_co": 1971, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1843.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 464.5, "Total_wall": 1131.3, "Total_wa00": 0.0, "Total_outw": 1654.9, "Total_shar": 282.6, "Total_roof": 464.5, "Gross_volu": 6225.3, "Is_Gross_v": "false", "Heated_vol": 5760.9, "Ridge_mean": 16.6, "Eaves_mean": 13.24, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.345, "Heated_are": 1843.5, "Mean_Uvalu": 0.48, "Specific_d": "32,9", "Specific_s": 6.1, "Total_Year": 71887.0, "January_He": 4147.0, "February_H": 1854.0, "March_Heat": 393.0, "April_Heat": 12.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 28.0, "November_H": 991.0, "December_H": 3887.0, "PV_potenti": 21.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198971190338478, 48.791986765966769, 0.0 ], [ 9.198880408518374, 48.792054635254907, 0.0 ], [ 9.198858425318832, 48.792071039313207, 0.0 ], [ 9.198785306603574, 48.792028092153089, 0.0 ], [ 9.198752873320229, 48.792051977888462, 0.0 ], [ 9.198724363138991, 48.792035391226548, 0.0 ], [ 9.198689168910988, 48.792014949375663, 0.0 ], [ 9.198721600425182, 48.791990614043129, 0.0 ], [ 9.19849951701878, 48.791860158236837, 0.0 ], [ 9.198612826203087, 48.791775794376356, 0.0 ], [ 9.198882110189189, 48.791934224620093, 0.0 ], [ 9.198971190338478, 48.791986765966769, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000323b8", "Latitude": 48.79207, "Longitude": 9.19879, "X_coordina": 3514678.51, "Y_coordina": 5406086.49, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 325.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 118.9, "Total_wall": 149.2, "Total_wa00": 0.0, "Total_outw": 263.6, "Total_shar": 285.6, "Total_roof": 118.9, "Gross_volu": 794.5, "Is_Gross_v": "false", "Heated_vol": 794.5, "Ridge_mean": 6.7, "Eaves_mean": 6.68, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.487, "Heated_are": 325.1, "Mean_Uvalu": 0.56, "Specific_d": "32,9", "Specific_s": 7.9, "Total_Year": 13235.0, "January_He": 883.0, "February_H": 460.0, "March_Heat": 118.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 9.0, "November_H": 253.0, "December_H": 826.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198785306603574, 48.792028092153089, 0.0 ], [ 9.198858425318832, 48.792071039313207, 0.0 ], [ 9.198734937990537, 48.792162884634855, 0.0 ], [ 9.198636992226083, 48.792105502525985, 0.0 ], [ 9.198713798989726, 48.792048448377948, 0.0 ], [ 9.198738217354943, 48.792062794014321, 0.0 ], [ 9.198752873320229, 48.792051977888462, 0.0 ], [ 9.198785306603574, 48.792028092153089, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003232a", "Latitude": 48.79431, "Longitude": 9.2016, "X_coordina": 3514884.24, "Y_coordina": 5406335.89, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1512.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 233.5, "Total_wall": 993.9, "Total_wa00": 0.0, "Total_outw": 1227.9, "Total_shar": 452.2, "Total_roof": 233.5, "Gross_volu": 4726.5, "Is_Gross_v": "false", "Heated_vol": 4726.5, "Ridge_mean": 20.3, "Eaves_mean": 20.25, "Storey_num": 8, "Average_St": 2.5, "Number_of_": 24, "Number_o00": 32, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.309, "Heated_are": 1512.5, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 30.0, "Total_Year": 69311.0, "January_He": 10989.0, "February_H": 7989.0, "March_Heat": 5213.0, "April_Heat": 1172.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 94.0, "October_He": 2295.0, "November_H": 6901.0, "December_H": 10670.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201651886547793, 48.794353837381536, 0.0 ], [ 9.201692815131127, 48.794378045065869, 0.0 ], [ 9.20161044377668, 48.794439067555025, 0.0 ], [ 9.201420539682692, 48.794327804731665, 0.0 ], [ 9.20155597032128, 48.794227392925308, 0.0 ], [ 9.201648877960043, 48.794282353418943, 0.0 ], [ 9.20161332356364, 48.794308583427771, 0.0 ], [ 9.20166884983467, 48.794341398224716, 0.0 ], [ 9.201651886547793, 48.794353837381536, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00032324", "Latitude": 48.79572, "Longitude": 9.21008, "X_coordina": 3515506.95, "Y_coordina": 5406493.62, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 664.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 115.2, "Total_wall": 525.8, "Total_wa00": 0.0, "Total_outw": 699.3, "Total_shar": 244.2, "Total_roof": 161.5, "Gross_volu": 2088.7, "Is_Gross_v": "false", "Heated_vol": 2077.3, "Ridge_mean": 21.1, "Eaves_mean": 15.93, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 11, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.386, "Heated_are": 664.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 37.4, "Total_Year": 35393.0, "January_He": 6176.0, "February_H": 4271.0, "March_Heat": 2657.0, "April_Heat": 567.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 62.0, "October_He": 1245.0, "November_H": 3820.0, "December_H": 6047.0, "PV_potenti": 6.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209967785946663, 48.795726226094395, 0.0 ], [ 9.209971735700705, 48.795726848357738, 0.0 ], [ 9.209988950717133, 48.795677269097752, 0.0 ], [ 9.210010741836722, 48.79568055653219, 0.0 ], [ 9.210124055929562, 48.795697705078489, 0.0 ], [ 9.210090301774244, 48.795795693396478, 0.0 ], [ 9.209951789485659, 48.795774274429078, 0.0 ], [ 9.20996711291258, 48.795728025792314, 0.0 ], [ 9.209967785946663, 48.795726226094395, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00032325", "Latitude": 48.79562, "Longitude": 9.21017, "X_coordina": 3515513.71, "Y_coordina": 5406482.9, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 35.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 39.3, "Total_wall": 70.4, "Total_wa00": 0.0, "Total_outw": 238.3, "Total_shar": 0.0, "Total_roof": 39.3, "Gross_volu": 122.0, "Is_Gross_v": "false", "Heated_vol": 94.4, "Ridge_mean": 3.1, "Eaves_mean": 3.1, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 1.391, "Heated_are": 35.5, "Mean_Uvalu": 0.45, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210165891103921, 48.795677036247568, 0.0 ], [ 9.210119175369654, 48.795669747762176, 0.0 ], [ 9.210128049945224, 48.795643743666183, 0.0 ], [ 9.210072618105277, 48.795635212135672, 0.0 ], [ 9.210072891268913, 48.795602839162235, 0.0 ], [ 9.210186204456456, 48.795619807802204, 0.0 ], [ 9.210165891103921, 48.795677036247568, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000322d2", "Latitude": 48.79458, "Longitude": 9.20837, "X_coordina": 3515381.83, "Y_coordina": 5406367.48, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1716.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 253.1, "Total_wall": 1595.5, "Total_wa00": 0.0, "Total_outw": 1939.8, "Total_shar": 0.0, "Total_roof": 253.1, "Gross_volu": 5364.2, "Is_Gross_v": "false", "Heated_vol": 5364.2, "Ridge_mean": 22.5, "Eaves_mean": 22.52, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 28, "Number_o00": 44, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.392, "Heated_are": 1716.5, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 34.3, "Total_Year": 86091.0, "January_He": 14694.0, "February_H": 10234.0, "March_Heat": 6269.0, "April_Heat": 1264.0, "May_Heatin": 36.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 116.0, "October_He": 2822.0, "November_H": 9067.0, "December_H": 14399.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20819320237964, 48.794674554785608, 0.0 ], [ 9.208193336996354, 48.794674194848021, 0.0 ], [ 9.208223334148528, 48.794588533387405, 0.0 ], [ 9.208241311515662, 48.794591288511256, 0.0 ], [ 9.20826767689001, 48.794516064737856, 0.0 ], [ 9.208467333988326, 48.794546547266776, 0.0 ], [ 9.208428055178777, 48.794658573192876, 0.0 ], [ 9.20838924031213, 48.794652618558501, 0.0 ], [ 9.208339666463072, 48.794645064751812, 0.0 ], [ 9.208322314066523, 48.794694644022719, 0.0 ], [ 9.20819320237964, 48.794674554785608, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003213a", "Latitude": 48.79113, "Longitude": 9.20935, "X_coordina": 3515454.61, "Y_coordina": 5405984.06, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 125.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.1, "Total_wall": 69.5, "Total_wa00": 0.0, "Total_outw": 138.3, "Total_shar": 231.8, "Total_roof": 68.6, "Gross_volu": 411.2, "Is_Gross_v": "false", "Heated_vol": 391.4, "Ridge_mean": 10.4, "Eaves_mean": 6.28, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.467, "Heated_are": 125.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.9, "Total_Year": 7231.0, "January_He": 1303.0, "February_H": 891.0, "March_Heat": 558.0, "April_Heat": 140.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 250.0, "November_H": 792.0, "December_H": 1291.0, "PV_potenti": 3.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209267264567151, 48.791152009795852, 0.0 ], [ 9.209279351981049, 48.79111323075351, 0.0 ], [ 9.209356562949855, 48.791123881247053, 0.0 ], [ 9.209345019226767, 48.79116247946186, 0.0 ], [ 9.209334280463743, 48.791198288580098, 0.0 ], [ 9.209256252064177, 48.791187459709882, 0.0 ], [ 9.209267264567151, 48.791152009795852, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003200e", "Latitude": 48.7907, "Longitude": 9.20579, "X_coordina": 3515192.74, "Y_coordina": 5405935.37, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 420.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 167.6, "Total_wall": 336.9, "Total_wa00": 0.0, "Total_outw": 665.5, "Total_shar": 0.0, "Total_roof": 274.2, "Gross_volu": 1481.6, "Is_Gross_v": "false", "Heated_vol": 1314.0, "Ridge_mean": 12.0, "Eaves_mean": 5.61, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 5, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.559, "Heated_are": 420.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 50.1, "Total_Year": 27729.0, "January_He": 5206.0, "February_H": 3593.0, "March_Heat": 2197.0, "April_Heat": 466.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 63.0, "October_He": 1090.0, "November_H": 3304.0, "December_H": 5130.0, "PV_potenti": 13.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205745883796837, 48.790647858605176, 0.0 ], [ 9.205811078409276, 48.790649090962901, 0.0 ], [ 9.205803674035799, 48.790801974345683, 0.0 ], [ 9.205739568349729, 48.790800829961981, 0.0 ], [ 9.205670426800317, 48.790799604612985, 0.0 ], [ 9.20567633380734, 48.790646544065844, 0.0 ], [ 9.205745883796837, 48.790647858605176, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00031b53", "Latitude": 48.78878, "Longitude": 9.21306, "X_coordina": 3515727.99, "Y_coordina": 5405723.34, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 89.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.6, "Total_wall": 50.0, "Total_wa00": 0.0, "Total_outw": 109.8, "Total_shar": 216.2, "Total_roof": 53.3, "Gross_volu": 321.7, "Is_Gross_v": "false", "Heated_vol": 280.1, "Ridge_mean": 9.4, "Eaves_mean": 6.03, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.481, "Heated_are": 89.6, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 45.9, "Total_Year": 5536.0, "January_He": 1033.0, "February_H": 711.0, "March_Heat": 411.0, "April_Heat": 69.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 209.0, "November_H": 661.0, "December_H": 1012.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213076789798148, 48.788784708787823, 0.0 ], [ 9.213072893292527, 48.788828688661603, 0.0 ], [ 9.213016950748944, 48.788826454138302, 0.0 ], [ 9.212957469131172, 48.788824046285079, 0.0 ], [ 9.212961501826289, 48.788780066163312, 0.0 ], [ 9.213020983392292, 48.788782474014589, 0.0 ], [ 9.213076789798148, 48.788784708787823, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003183a", "Latitude": 48.78766, "Longitude": 9.20908, "X_coordina": 3515435.8, "Y_coordina": 5405597.09, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 585.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 160.4, "Total_wall": 327.0, "Total_wa00": 0.0, "Total_outw": 494.4, "Total_shar": 358.1, "Total_roof": 229.7, "Gross_volu": 2203.0, "Is_Gross_v": "false", "Heated_vol": 2042.6, "Ridge_mean": 16.3, "Eaves_mean": 11.15, "Storey_num": 5, "Average_St": 3.1, "Number_of_": 9, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.34, "Heated_are": 585.9, "Mean_Uvalu": 0.56, "Specific_d": "15,8", "Specific_s": 43.6, "Total_Year": 34822.0, "January_He": 6043.0, "February_H": 4328.0, "March_Heat": 2947.0, "April_Heat": 904.0, "May_Heatin": 53.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 115.0, "October_He": 1407.0, "November_H": 3815.0, "December_H": 5929.0, "PV_potenti": 11.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208945416586573, 48.787616796708129, 0.0 ], [ 9.209157843297623, 48.787648333988585, 0.0 ], [ 9.209141300522708, 48.787695484033932, 0.0 ], [ 9.209127043533513, 48.787735975574435, 0.0 ], [ 9.208914345419229, 48.787704708501003, 0.0 ], [ 9.208928872876383, 48.787663766877579, 0.0 ], [ 9.208945416586573, 48.787616796708129, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00031690", "Latitude": 48.78845, "Longitude": 9.21105, "X_coordina": 3515580.09, "Y_coordina": 5405685.29, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 102.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 48.4, "Total_wall": 118.4, "Total_wa00": 0.0, "Total_outw": 243.4, "Total_shar": 98.4, "Total_roof": 66.4, "Gross_volu": 369.3, "Is_Gross_v": "false", "Heated_vol": 320.9, "Ridge_mean": 9.4, "Eaves_mean": 5.81, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.684, "Heated_are": 102.7, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 49.6, "Total_Year": 6715.0, "January_He": 1369.0, "February_H": 839.0, "March_Heat": 431.0, "April_Heat": 77.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 197.0, "November_H": 778.0, "December_H": 1386.0, "PV_potenti": 2.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210951102621573, 48.788437200581008, 0.0 ], [ 9.211001592070923, 48.788437287930975, 0.0 ], [ 9.211054939748152, 48.788437459944255, 0.0 ], [ 9.211053274725076, 48.788494744363291, 0.0 ], [ 9.211001560800577, 48.788494749203132, 0.0 ], [ 9.210950799493975, 48.788494752274801, 0.0 ], [ 9.210950886206437, 48.788482972117329, 0.0 ], [ 9.210951113175174, 48.788439718424009, 0.0 ], [ 9.210951102621573, 48.788437200581008, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003152f", "Latitude": 48.78828, "Longitude": 9.21051, "X_coordina": 3515540.8, "Y_coordina": 5405666.27, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 138.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 58.0, "Total_wall": 113.6, "Total_wa00": 0.0, "Total_outw": 182.8, "Total_shar": 117.1, "Total_roof": 94.2, "Gross_volu": 444.9, "Is_Gross_v": "false", "Heated_vol": 431.6, "Ridge_mean": 10.2, "Eaves_mean": 5.11, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.607, "Heated_are": 138.1, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 55.7, "Total_Year": 9879.0, "January_He": 1853.0, "February_H": 1304.0, "March_Heat": 848.0, "April_Heat": 229.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 31.0, "October_He": 407.0, "November_H": 1170.0, "December_H": 1836.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210419346848571, 48.788259579645768, 0.0 ], [ 9.210421788682138, 48.78825967589858, 0.0 ], [ 9.210518016297165, 48.788260484695201, 0.0 ], [ 9.210516393907563, 48.788332335763272, 0.0 ], [ 9.210416923632849, 48.788330989751316, 0.0 ], [ 9.210417769377399, 48.788306077554786, 0.0 ], [ 9.210419346848571, 48.788259579645768, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000313de", "Latitude": 48.79377, "Longitude": 9.20521, "X_coordina": 3515149.4, "Y_coordina": 5406276.43, "LOD": "LOD2", "Year_of_co": 1995, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 107.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 64.2, "Total_wall": 131.8, "Total_wa00": 0.0, "Total_outw": 207.5, "Total_shar": 60.9, "Total_roof": 64.2, "Gross_volu": 399.4, "Is_Gross_v": "false", "Heated_vol": 335.2, "Ridge_mean": 6.2, "Eaves_mean": 6.21, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.715, "Heated_are": 107.3, "Mean_Uvalu": 0.64, "Specific_d": "24,8", "Specific_s": 85.3, "Total_Year": 11817.0, "January_He": 2139.0, "February_H": 1507.0, "March_Heat": 982.0, "April_Heat": 288.0, "May_Heatin": 34.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 1, "September_": 85.0, "October_He": 591.0, "November_H": 1425.0, "December_H": 2099.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205233836270867, 48.79380383152634, 0.0 ], [ 9.205237939157609, 48.793808680086954, 0.0 ], [ 9.205145934016848, 48.793842295590153, 0.0 ], [ 9.205088766331627, 48.793774505120112, 0.0 ], [ 9.205177237855175, 48.793742154887958, 0.0 ], [ 9.20523003089739, 48.793805187161624, 0.0 ], [ 9.205233836270867, 48.79380383152634, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000313e0", "Latitude": 48.79365, "Longitude": 9.20509, "X_coordina": 3515140.43, "Y_coordina": 5406262.66, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 1936.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 368.7, "Total_wall": 1267.5, "Total_wa00": 0.0, "Total_outw": 1550.0, "Total_shar": 103.3, "Total_roof": 507.2, "Gross_volu": 6421.1, "Is_Gross_v": "false", "Heated_vol": 6052.4, "Ridge_mean": 20.5, "Eaves_mean": 9.6, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.347, "Heated_are": 1936.8, "Mean_Uvalu": 0.45, "Specific_d": "24,8", "Specific_s": 39.6, "Total_Year": 124794.0, "January_He": 17751.0, "February_H": 12949.0, "March_Heat": 8764.0, "April_Heat": 2539.0, "May_Heatin": 213.0, "June_Heati": 9, "July_Heati": 1, "August_Hea": 3, "September_": 547.0, "October_He": 4808.0, "November_H": 11705.0, "December_H": 17397.0, "PV_potenti": 22.07 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205249348403557, 48.793696156373962, 0.0 ], [ 9.205250578126686, 48.793704004509955, 0.0 ], [ 9.205247424508281, 48.793711653634197, 0.0 ], [ 9.20524029148897, 48.793718032935907, 0.0 ], [ 9.205240974935521, 48.793718751106418, 0.0 ], [ 9.205177237855175, 48.793742154887958, 0.0 ], [ 9.205088766331627, 48.793774505120112, 0.0 ], [ 9.205056353170336, 48.793736075552516, 0.0 ], [ 9.205032416880703, 48.793707072858396, 0.0 ], [ 9.204990287408375, 48.793722434866062, 0.0 ], [ 9.204988521007071, 48.793723157398922, 0.0 ], [ 9.204963496676127, 48.793694336474317, 0.0 ], [ 9.204883858944202, 48.793723523501519, 0.0 ], [ 9.204834214344473, 48.793664801799764, 0.0 ], [ 9.204835164864244, 48.793664260567631, 0.0 ], [ 9.204833625612544, 48.793657258259259, 0.0 ], [ 9.204834814227029, 48.793651680883627, 0.0 ], [ 9.204838574368553, 48.79364590110206, 0.0 ], [ 9.204843850991516, 48.793641530422953, 0.0 ], [ 9.204852351918539, 48.793636830283177, 0.0 ], [ 9.204862082230497, 48.793633225023378, 0.0 ], [ 9.204873001573057, 48.79363083161563, 0.0 ], [ 9.204884132940117, 48.793630371186431, 0.0 ], [ 9.204895560923655, 48.793632562973777, 0.0 ], [ 9.204902623651957, 48.79363565277054, 0.0 ], [ 9.204904875124479, 48.793637069556908, 0.0 ], [ 9.204905558931328, 48.793637877652344, 0.0 ], [ 9.205110904431072, 48.79356269568089, 0.0 ], [ 9.205111560946497, 48.793563485839023, 0.0 ], [ 9.205123848833763, 48.793562942395539, 0.0 ], [ 9.205135523005779, 48.793565430468405, 0.0 ], [ 9.20514508531549, 48.793570700940592, 0.0 ], [ 9.205150966997065, 48.793577875356291, 0.0 ], [ 9.205157135044656, 48.79358518414687, 0.0 ], [ 9.205152649908397, 48.793586720837823, 0.0 ], [ 9.205153119173291, 48.793591656805994, 0.0 ], [ 9.205151900515345, 48.793596532834634, 0.0 ], [ 9.20514904764168, 48.793601168980871, 0.0 ], [ 9.205144695407544, 48.793605259264218, 0.0 ], [ 9.20520404159763, 48.793676624784759, 0.0 ], [ 9.205210271967388, 48.79367584933226, 0.0 ], [ 9.20521662779969, 48.793675802036766, 0.0 ], [ 9.205222891587791, 48.793676546232383, 0.0 ], [ 9.20522883177463, 48.793678037370007, 0.0 ], [ 9.205233043978453, 48.793676321315381, 0.0 ], [ 9.205243848147541, 48.793689071207197, 0.0 ], [ 9.205249348403557, 48.793696156373962, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000313e1", "Latitude": 48.79386, "Longitude": 9.20539, "X_coordina": 3515162.68, "Y_coordina": 5406286.09, "LOD": "LOD2", "Year_of_co": 1973, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 11.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 68.0, "Total_wall": 64.9, "Total_wa00": 0.0, "Total_outw": 125.4, "Total_shar": 0.0, "Total_roof": 88.9, "Gross_volu": 99.2, "Is_Gross_v": "true", "Heated_vol": 35.4, "Ridge_mean": 3.5, "Eaves_mean": -0.93, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 2.466, "Heated_are": 11.3, "Mean_Uvalu": 0.44, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205359789205723, 48.793844486242307, 4.47 ], [ 9.20539656887078, 48.793888914830298, 4.47 ], [ 9.20532930988346, 48.7939131342889, 4.47 ], [ 9.205292584957879, 48.793868768528576, 4.47 ], [ 9.205359789205723, 48.793844486242307, 4.47 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000313e1", "Latitude": 48.79386, "Longitude": 9.20539, "X_coordina": 3515162.68, "Y_coordina": 5406286.09, "LOD": "LOD2", "Year_of_co": 1973, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 11.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 68.0, "Total_wall": 64.9, "Total_wa00": 0.0, "Total_outw": 125.4, "Total_shar": 0.0, "Total_roof": 88.9, "Gross_volu": 99.2, "Is_Gross_v": "true", "Heated_vol": 35.4, "Ridge_mean": 3.5, "Eaves_mean": -0.93, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 2.466, "Heated_are": 11.3, "Mean_Uvalu": 0.44, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205360868082217, 48.793842047389667, 0.0 ], [ 9.205400260232897, 48.793889636627277, 0.0 ], [ 9.205328231003925, 48.79391557314122, 0.0 ], [ 9.205288893635506, 48.793868055720409, 0.0 ], [ 9.205360868082217, 48.793842047389667, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000313bf", "Latitude": 48.78985, "Longitude": 9.20629, "X_coordina": 3515229.74, "Y_coordina": 5405840.74, "LOD": "LOD2", "Year_of_co": 1968, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1131, "PrimaryUsa": "residential", "PrimaryU00": 252.2, "SecondaryU": "industry", "Secondar00": 123.6, "BuildingTy": "RH", "Footprint_": 154.5, "Total_wall": 273.3, "Total_wa00": 0.0, "Total_outw": 550.1, "Total_shar": 341.2, "Total_roof": 204.9, "Gross_volu": 1328.7, "Is_Gross_v": "false", "Heated_vol": 1174.2, "Ridge_mean": 9.8, "Eaves_mean": 7.19, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 5, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.506, "Heated_are": 375.7, "Mean_Uvalu": 0.51, "Specific_d": "21,4", "Specific_s": 32.9, "Total_Year": 20425.0, "January_He": 3367.0, "February_H": 2206.0, "March_Heat": 1088.0, "April_Heat": 135.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 370.0, "November_H": 1881.0, "December_H": 3313.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206300766716703, 48.789823525189099, 0.0 ], [ 9.20635467161941, 48.78985966783268, 0.0 ], [ 9.206281530336481, 48.789911594883179, 0.0 ], [ 9.206226980114401, 48.789950449669121, 0.0 ], [ 9.206188442284633, 48.789977945383185, 0.0 ], [ 9.206179983560284, 48.789972834881041, 0.0 ], [ 9.206160747390436, 48.789961359095116, 0.0 ], [ 9.206134553212502, 48.789945669350345, 0.0 ], [ 9.206127186183467, 48.789941276279201, 0.0 ], [ 9.206191236394398, 48.7898959300298, 0.0 ], [ 9.206247687082303, 48.789855902849524, 0.0 ], [ 9.206165802374116, 48.789800027051577, 0.0 ], [ 9.206190913048642, 48.789783795840194, 0.0 ], [ 9.206216566231644, 48.789767114033658, 0.0 ], [ 9.206300766716703, 48.789823525189099, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000313c0", "Latitude": 48.78999, "Longitude": 9.2061, "X_coordina": 3515216.39, "Y_coordina": 5405856.27, "LOD": "LOD2", "Year_of_co": 1991, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 67.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 36.3, "Total_wall": 91.6, "Total_wa00": 0.0, "Total_outw": 211.9, "Total_shar": 0.0, "Total_roof": 36.3, "Gross_volu": 137.9, "Is_Gross_v": "true", "Heated_vol": 137.9, "Ridge_mean": 3.8, "Eaves_mean": 3.8, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.19, "Heated_are": 67.0, "Mean_Uvalu": 0.3, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206005182705578, 48.790025393338709, 0.0 ], [ 9.206040094277853, 48.789976412426846, 0.0 ], [ 9.206114223526026, 48.789999480069042, 0.0 ], [ 9.206079312009997, 48.790048461003074, 0.0 ], [ 9.206005182705578, 48.790025393338709, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000313c1", "Latitude": 48.78983, "Longitude": 9.20622, "X_coordina": 3515224.89, "Y_coordina": 5405838.01, "LOD": "LOD2", "Year_of_co": 1998, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 101.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 55.7, "Total_wall": 40.7, "Total_wa00": 0.0, "Total_outw": 85.0, "Total_shar": 203.1, "Total_roof": 55.7, "Gross_volu": 253.9, "Is_Gross_v": "false", "Heated_vol": 253.9, "Ridge_mean": 4.6, "Eaves_mean": 4.55, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.599, "Heated_are": 101.3, "Mean_Uvalu": 0.48, "Specific_d": "32,9", "Specific_s": 12.6, "Total_Year": 4612.0, "January_He": 406.0, "February_H": 250.0, "March_Heat": 89.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 9.0, "November_H": 154.0, "December_H": 371.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20610173679437, 48.789841596522585, 0.0 ], [ 9.206165802374116, 48.789800027051577, 0.0 ], [ 9.206247687082303, 48.789855902849524, 0.0 ], [ 9.206191236394398, 48.7898959300298, 0.0 ], [ 9.20610173679437, 48.789841596522585, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000312b3", "Latitude": 48.79107, "Longitude": 9.20961, "X_coordina": 3515473.82, "Y_coordina": 5405976.37, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 403.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 161.5, "Total_wall": 234.8, "Total_wa00": 0.0, "Total_outw": 510.2, "Total_shar": 137.1, "Total_roof": 240.7, "Gross_volu": 1384.7, "Is_Gross_v": "false", "Heated_vol": 1259.4, "Ridge_mean": 11.4, "Eaves_mean": 6.18, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.484, "Heated_are": 403.0, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 46.0, "Total_Year": 24932.0, "January_He": 4427.0, "February_H": 3157.0, "March_Heat": 2095.0, "April_Heat": 596.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 75.0, "October_He": 1001.0, "November_H": 2814.0, "December_H": 4354.0, "PV_potenti": 10.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20969245367124, 48.791059694130439, 0.0 ], [ 9.20967902361955, 48.791102791994518, 0.0 ], [ 9.209666400751326, 48.791143640296838, 0.0 ], [ 9.209442532203761, 48.791113383711675, 0.0 ], [ 9.209467356507897, 48.79102845067046, 0.0 ], [ 9.209692588642355, 48.791059424113826, 0.0 ], [ 9.20969245367124, 48.791059694130439, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003113c", "Latitude": 48.78865, "Longitude": 9.1994, "X_coordina": 3514724.05, "Y_coordina": 5405706.27, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 973.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 278.9, "Total_wall": 824.0, "Total_wa00": 0.0, "Total_outw": 1306.4, "Total_shar": 0.0, "Total_roof": 278.9, "Gross_volu": 3321.2, "Is_Gross_v": "false", "Heated_vol": 3042.3, "Ridge_mean": 11.9, "Eaves_mean": 11.91, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 12, "Number_o00": 21, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.439, "Heated_are": 973.6, "Mean_Uvalu": 0.55, "Specific_d": "15,8", "Specific_s": 49.0, "Total_Year": 63128.0, "January_He": 11160.0, "February_H": 8081.0, "March_Heat": 5559.0, "April_Heat": 1671.0, "May_Heatin": 103.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 243.0, "October_He": 2763.0, "November_H": 7192.0, "December_H": 10935.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199279753041198, 48.788625606766075, 0.0 ], [ 9.199279894471134, 48.788626955376074, 0.0 ], [ 9.199329288272772, 48.78862525126285, 0.0 ], [ 9.199329552258366, 48.788623182561963, 0.0 ], [ 9.199372823486925, 48.788621848722393, 0.0 ], [ 9.199372677779571, 48.788619421036117, 0.0 ], [ 9.199379324395128, 48.788613924185867, 0.0 ], [ 9.199402322317251, 48.788613614594411, 0.0 ], [ 9.199409690348046, 48.788618457712907, 0.0 ], [ 9.199409564236039, 48.788620975793471, 0.0 ], [ 9.199494200371197, 48.788618041569514, 0.0 ], [ 9.199494207500443, 48.788619840030158, 0.0 ], [ 9.199513394583873, 48.788619447094661, 0.0 ], [ 9.199520576920039, 48.788714753718367, 0.0 ], [ 9.199482340908007, 48.788716078891113, 0.0 ], [ 9.199482662275097, 48.788728487797805, 0.0 ], [ 9.199430548379009, 48.78873064630573, 0.0 ], [ 9.199429975158658, 48.78872336348298, 0.0 ], [ 9.199287917115091, 48.788728375367988, 0.0 ], [ 9.199288760000352, 48.788735028259218, 0.0 ], [ 9.19923419684222, 48.788737280840657, 0.0 ], [ 9.199234008421296, 48.788724062390443, 0.0 ], [ 9.199193731415177, 48.788725480922224, 0.0 ], [ 9.199187230851408, 48.788630352946413, 0.0 ], [ 9.199207094825645, 48.788629059654589, 0.0 ], [ 9.199207630993763, 48.788626990483138, 0.0 ], [ 9.199279753041198, 48.788625606766075, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003106b", "Latitude": 48.79407, "Longitude": 9.20039, "X_coordina": 3514795.24, "Y_coordina": 5406308.98, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 396.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 247.9, "Total_wall": 230.8, "Total_wa00": 0.0, "Total_outw": 498.5, "Total_shar": 240.6, "Total_roof": 247.9, "Gross_volu": 1308.4, "Is_Gross_v": "false", "Heated_vol": 1240.2, "Ridge_mean": 5.3, "Eaves_mean": 5.28, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.565, "Heated_are": 396.9, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 10.6, "Total_Year": 17255.0, "January_He": 1432.0, "February_H": 733.0, "March_Heat": 218.0, "April_Heat": 11.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 22.0, "November_H": 446.0, "December_H": 1352.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20045146837449, 48.794087871030868, 0.0 ], [ 9.2004480761761, 48.7940904847189, 0.0 ], [ 9.200480135738683, 48.794109312858566, 0.0 ], [ 9.20048203581389, 48.794107960697211, 0.0 ], [ 9.200508092866858, 48.79412329225994, 0.0 ], [ 9.20040794498162, 48.794197923300686, 0.0 ], [ 9.20018066480135, 48.794064782119626, 0.0 ], [ 9.200282849297102, 48.793988888802659, 0.0 ], [ 9.200356790549158, 48.794032283185146, 0.0 ], [ 9.200352855010392, 48.794035167586415, 0.0 ], [ 9.200403604004265, 48.794064843981147, 0.0 ], [ 9.200407403797174, 48.794062049737967, 0.0 ], [ 9.20045146837449, 48.794087871030868, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00030907", "Latitude": 48.78877, "Longitude": 9.21267, "X_coordina": 3515699.5, "Y_coordina": 5405722.03, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 450.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 167.8, "Total_wall": 333.9, "Total_wa00": 0.0, "Total_outw": 560.2, "Total_shar": 111.9, "Total_roof": 213.2, "Gross_volu": 1417.7, "Is_Gross_v": "false", "Heated_vol": 1409.2, "Ridge_mean": 10.1, "Eaves_mean": 6.78, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.506, "Heated_are": 450.9, "Mean_Uvalu": 0.43, "Specific_d": "15,8", "Specific_s": 45.9, "Total_Year": 27846.0, "January_He": 4965.0, "February_H": 3574.0, "March_Heat": 2293.0, "April_Heat": 514.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 1178.0, "November_H": 3256.0, "December_H": 4836.0, "PV_potenti": 10.06 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.2126382433953, 48.788705127625782, 0.0 ], [ 9.212695003081031, 48.788707540671069, 0.0 ], [ 9.212679009339862, 48.788883910485147, 0.0 ], [ 9.212563584327354, 48.788879087868423, 0.0 ], [ 9.212570886286622, 48.788803538525684, 0.0 ], [ 9.212567075411915, 48.78880345563627, 0.0 ], [ 9.212569146491363, 48.788778273191646, 0.0 ], [ 9.212572276539172, 48.788778267414052, 0.0 ], [ 9.212579442382449, 48.788702718320714, 0.0 ], [ 9.2126382433953, 48.788705127625782, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003085a", "Latitude": 48.79287, "Longitude": 9.20099, "X_coordina": 3514839.84, "Y_coordina": 5406174.92, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 4729.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 701.0, "Total_wall": 2074.1, "Total_wa00": 0.0, "Total_outw": 2569.6, "Total_shar": 408.0, "Total_roof": 701.0, "Gross_volu": 15345.1, "Is_Gross_v": "false", "Heated_vol": 14778.8, "Ridge_mean": 24.2, "Eaves_mean": 24.21, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.232, "Heated_are": 4729.2, "Mean_Uvalu": 0.4, "Specific_d": "14,6", "Specific_s": 49.5, "Total_Year": 302992.99999999994, "January_He": 50548.0, "February_H": 39101.0, "March_Heat": 29698.0, "April_Heat": 12578.0, "May_Heatin": 1900.0, "June_Heati": 71, "July_Heati": 8, "August_Hea": 15, "September_": 2879.0, "October_He": 15230.0, "November_H": 33339.0, "December_H": 48533.0, "PV_potenti": 32.59 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200876532355441, 48.793067576886713, 0.0 ], [ 9.200683760095488, 48.792952091418151, 0.0 ], [ 9.200839949384857, 48.792835997547641, 0.0 ], [ 9.200888801100895, 48.792799763056735, 0.0 ], [ 9.201014592922395, 48.792706202866412, 0.0 ], [ 9.201209536843987, 48.792820245214735, 0.0 ], [ 9.201197457377813, 48.792828629213311, 0.0 ], [ 9.200876532355441, 48.793067576886713, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003085b", "Latitude": 48.79321, "Longitude": 9.20156, "X_coordina": 3514881.73, "Y_coordina": 5406213.75, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 74.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 125.4, "Total_wall": 126.7, "Total_wa00": 0.0, "Total_outw": 395.3, "Total_shar": 96.7, "Total_roof": 134.7, "Gross_volu": 473.8, "Is_Gross_v": "false", "Heated_vol": 348.4, "Ridge_mean": 4.9, "Eaves_mean": 2.7, "Storey_num": 1, "Average_St": 3.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.913, "Heated_are": 74.9, "Mean_Uvalu": 0.5, "Specific_d": "non calculated", "Specific_s": 125.7, "Total_Year": 9417.0, "January_He": 2266.0, "February_H": 1564.0, "March_Heat": 974.0, "April_Heat": 263.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 550.0, "November_H": 1479.0, "December_H": 2247.0, "PV_potenti": 6.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201511017457429, 48.793198296334033, 0.0 ], [ 9.201592595760621, 48.793245543279319, 0.0 ], [ 9.201657803856603, 48.793283286935079, 0.0 ], [ 9.201658895550125, 48.79328400441198, 0.0 ], [ 9.201608418630236, 48.79332222039023, 0.0 ], [ 9.201377308260088, 48.793184052534045, 0.0 ], [ 9.201425479780902, 48.793147908930877, 0.0 ], [ 9.201457130083881, 48.793166557670531, 0.0 ], [ 9.201511017457429, 48.793198296334033, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003085d", "Latitude": 48.79304, "Longitude": 9.20117, "X_coordina": 3514853.18, "Y_coordina": 5406193.88, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 2467.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 911.0, "Total_wall": 792.8, "Total_wa00": 0.0, "Total_outw": 1337.0, "Total_shar": 405.7, "Total_roof": 911.0, "Gross_volu": 6634.2, "Is_Gross_v": "false", "Heated_vol": 6634.2, "Ridge_mean": 7.3, "Eaves_mean": 7.28, "Storey_num": 3, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.394, "Heated_are": 2467.9, "Mean_Uvalu": 0.37, "Specific_d": "73,0", "Specific_s": 39.8, "Total_Year": 278380.0, "January_He": 22255.0, "February_H": 16824.0, "March_Heat": 12198.0, "April_Heat": 4330.0, "May_Heatin": 402.0, "June_Heati": 10, "July_Heati": 1, "August_Hea": 2, "September_": 794.0, "October_He": 5798.0, "November_H": 14281.0, "December_H": 21301.0, "PV_potenti": 43.45 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200864454928311, 48.793076500387961, 0.0 ], [ 9.200876532355441, 48.793067576886713, 0.0 ], [ 9.201197457377813, 48.792828629213311, 0.0 ], [ 9.2013231045275, 48.792903136118269, 0.0 ], [ 9.201247792573541, 48.792959200225297, 0.0 ], [ 9.201251075017231, 48.792997232163948, 0.0 ], [ 9.201214843332563, 48.793024092704492, 0.0 ], [ 9.201193402358356, 48.793039866792952, 0.0 ], [ 9.201393532771052, 48.793157137010908, 0.0 ], [ 9.201234900776432, 48.793274944441784, 0.0 ], [ 9.201221331642994, 48.79328521944047, 0.0 ], [ 9.200864454928311, 48.793076500387961, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000307a2", "Latitude": 48.7886, "Longitude": 9.21188, "X_coordina": 3515641.05, "Y_coordina": 5405702.3, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 86.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.2, "Total_wall": 49.8, "Total_wa00": 0.0, "Total_outw": 111.0, "Total_shar": 230.1, "Total_roof": 57.5, "Gross_volu": 340.7, "Is_Gross_v": "false", "Heated_vol": 298.5, "Ridge_mean": 10.1, "Eaves_mean": 6.03, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.467, "Heated_are": 86.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.0, "Total_Year": 5451.0, "January_He": 1031.0, "February_H": 704.0, "March_Heat": 398.0, "April_Heat": 65.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 203.0, "November_H": 657.0, "December_H": 1010.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211771326559264, 48.788634696224797, 0.0 ], [ 9.211777813653191, 48.788591610866234, 0.0 ], [ 9.211837845730683, 48.788595547017898, 0.0 ], [ 9.21189515491049, 48.788599218377477, 0.0 ], [ 9.211889079589351, 48.788643112297841, 0.0 ], [ 9.211831768467576, 48.788638991320582, 0.0 ], [ 9.211771326559264, 48.788634696224797, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003050e", "Latitude": 48.78758, "Longitude": 9.21333, "X_coordina": 3515748.2, "Y_coordina": 5405589.56, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 491.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 124.3, "Total_wall": 271.5, "Total_wa00": 0.0, "Total_outw": 422.4, "Total_shar": 316.5, "Total_roof": 186.7, "Gross_volu": 1595.6, "Is_Gross_v": "false", "Heated_vol": 1537.2, "Ridge_mean": 15.5, "Eaves_mean": 10.19, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.373, "Heated_are": 491.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 39.8, "Total_Year": 27391.0, "January_He": 4776.0, "February_H": 3414.0, "March_Heat": 2129.0, "April_Heat": 417.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 48.0, "October_He": 1059.0, "November_H": 3089.0, "December_H": 4657.0, "PV_potenti": 8.65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213270575555386, 48.787659135339794, 0.0 ], [ 9.213204941341377, 48.787649635038221, 0.0 ], [ 9.213243916694729, 48.787534010961053, 0.0 ], [ 9.213309686088744, 48.787543331142864, 0.0 ], [ 9.213369191751816, 48.787551763655927, 0.0 ], [ 9.21333021857833, 48.787667837389442, 0.0 ], [ 9.213270575555386, 48.787659135339794, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003045e", "Latitude": 48.78929, "Longitude": 9.20225, "X_coordina": 3514933.36, "Y_coordina": 5405777.74, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 905.1, "SecondaryU": "retail", "Secondar00": 161.3, "BuildingTy": "GMH", "Footprint_": 201.6, "Total_wall": 394.9, "Total_wa00": 0.0, "Total_outw": 527.1, "Total_shar": 649.8, "Total_roof": 236.3, "Gross_volu": 3512.9, "Is_Gross_v": "false", "Heated_vol": 3332.5, "Ridge_mean": 19.2, "Eaves_mean": 15.59, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 17, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.244, "Heated_are": 1066.4, "Mean_Uvalu": 0.45, "Specific_d": "24,5", "Specific_s": 29.6, "Total_Year": 57720.0, "January_He": 7554.0, "February_H": 5496.0, "March_Heat": 3796.0, "April_Heat": 1066.0, "May_Heatin": 41.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 93.0, "October_He": 1588.0, "November_H": 4620.0, "December_H": 7352.0, "PV_potenti": 11.63 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202296966680544, 48.789362845454498, 0.0 ], [ 9.202130280488667, 48.789369342882289, 0.0 ], [ 9.2020939496824, 48.789370755500848, 0.0 ], [ 9.20208910449054, 48.789316450126037, 0.0 ], [ 9.202084541239753, 48.789264572194043, 0.0 ], [ 9.202315315556854, 48.789255444394449, 0.0 ], [ 9.202320698118397, 48.789307950343442, 0.0 ], [ 9.202325512829322, 48.789354612252914, 0.0 ], [ 9.202322819937441, 48.789361810875214, 0.0 ], [ 9.202296966680544, 48.789362845454498, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003045f", "Latitude": 48.78936, "Longitude": 9.20226, "X_coordina": 3514934.13, "Y_coordina": 5405785.68, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 77.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.6, "Total_wall": 0.9, "Total_wa00": 0.0, "Total_outw": 1.8, "Total_shar": 330.8, "Total_roof": 46.6, "Gross_volu": 288.1, "Is_Gross_v": "false", "Heated_vol": 241.5, "Ridge_mean": 6.2, "Eaves_mean": 6.19, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.327, "Heated_are": 77.3, "Mean_Uvalu": 0.23, "Specific_d": "73,0", "Specific_s": 43.3, "Total_Year": 8993.0, "January_He": 689.0, "February_H": 553.0, "March_Heat": 447.0, "April_Heat": 223.0, "May_Heatin": 43.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 55.0, "October_He": 223.0, "November_H": 461.0, "December_H": 653.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202131113286089, 48.789373387984242, 0.0 ], [ 9.202130280488667, 48.789369342882289, 0.0 ], [ 9.202296966680544, 48.789362845454498, 0.0 ], [ 9.202301199778736, 48.789400246251567, 0.0 ], [ 9.202161592286394, 48.78940588683858, 0.0 ], [ 9.202155332831076, 48.789406077674322, 0.0 ], [ 9.202153050624345, 48.78938000382567, 0.0 ], [ 9.202142300899801, 48.789380382390306, 0.0 ], [ 9.202134398967713, 48.789378238093427, 0.0 ], [ 9.202131113286089, 48.789373387984242, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00030460", "Latitude": 48.78939, "Longitude": 9.20217, "X_coordina": 3514927.7, "Y_coordina": 5405788.11, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 95.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 34.9, "Total_wall": 70.5, "Total_wa00": 0.0, "Total_outw": 109.3, "Total_shar": 159.6, "Total_roof": 34.9, "Gross_volu": 240.3, "Is_Gross_v": "false", "Heated_vol": 240.3, "Ridge_mean": 6.9, "Eaves_mean": 6.87, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.584, "Heated_are": 95.3, "Mean_Uvalu": 0.43, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202130280488667, 48.789369342882289, 0.0 ], [ 9.202131113286089, 48.789373387984242, 0.0 ], [ 9.202134398967713, 48.789378238093427, 0.0 ], [ 9.202142300899801, 48.789380382390306, 0.0 ], [ 9.202153050624345, 48.78938000382567, 0.0 ], [ 9.202155332831076, 48.789406077674322, 0.0 ], [ 9.202161592286394, 48.78940588683858, 0.0 ], [ 9.20216268761061, 48.789441404752459, 0.0 ], [ 9.202103904279234, 48.789443486253539, 0.0 ], [ 9.202098733185275, 48.789443585252457, 0.0 ], [ 9.2020939496824, 48.789370755500848, 0.0 ], [ 9.202130280488667, 48.789369342882289, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00030461", "Latitude": 48.78938, "Longitude": 9.20229, "X_coordina": 3514936.31, "Y_coordina": 5405787.59, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 153.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 55.8, "Total_wall": 81.1, "Total_wa00": 0.0, "Total_outw": 127.6, "Total_shar": 297.2, "Total_roof": 55.8, "Gross_volu": 370.7, "Is_Gross_v": "false", "Heated_vol": 370.7, "Ridge_mean": 6.6, "Eaves_mean": 6.63, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.52, "Heated_are": 153.0, "Mean_Uvalu": 0.39, "Specific_d": "73,0", "Specific_s": 40.9, "Total_Year": 17430.0, "January_He": 1505.0, "February_H": 1074.0, "March_Heat": 709.0, "April_Heat": 194.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 343.0, "November_H": 938.0, "December_H": 1447.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202296966680544, 48.789362845454498, 0.0 ], [ 9.202322819937441, 48.789361810875214, 0.0 ], [ 9.202321743865037, 48.789364960093138, 0.0 ], [ 9.202329646579951, 48.789434996722285, 0.0 ], [ 9.20216268761061, 48.789441404752459, 0.0 ], [ 9.202161592286394, 48.78940588683858, 0.0 ], [ 9.202301199778736, 48.789400246251567, 0.0 ], [ 9.202296966680544, 48.789362845454498, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000302c6", "Latitude": 48.78878, "Longitude": 9.2137, "X_coordina": 3515774.98, "Y_coordina": 5405722.94, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 98.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.8, "Total_wall": 54.6, "Total_wa00": 0.0, "Total_outw": 124.2, "Total_shar": 219.4, "Total_roof": 62.8, "Gross_volu": 354.6, "Is_Gross_v": "false", "Heated_vol": 307.8, "Ridge_mean": 9.7, "Eaves_mean": 5.17, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.494, "Heated_are": 98.5, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.0, "Total_Year": 6092.0, "January_He": 1110.0, "February_H": 792.0, "March_Heat": 479.0, "April_Heat": 91.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 12.0, "October_He": 236.0, "November_H": 716.0, "December_H": 1094.0, "PV_potenti": 2.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213682927345285, 48.788782866305638, 0.0 ], [ 9.213720334500959, 48.788810763145605, 0.0 ], [ 9.213657883537389, 48.788846219020584, 0.0 ], [ 9.213625904305719, 48.788814625222201, 0.0 ], [ 9.213592695733229, 48.788781954611096, 0.0 ], [ 9.213642790435603, 48.788753086120884, 0.0 ], [ 9.213682927345285, 48.788782866305638, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0003014e", "Latitude": 48.78861, "Longitude": 9.21308, "X_coordina": 3515729.22, "Y_coordina": 5405703.73, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 89.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.8, "Total_wall": 51.7, "Total_wa00": 0.0, "Total_outw": 125.1, "Total_shar": 231.9, "Total_roof": 53.5, "Gross_volu": 321.6, "Is_Gross_v": "false", "Heated_vol": 279.8, "Ridge_mean": 9.4, "Eaves_mean": 5.99, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.488, "Heated_are": 89.5, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 43.8, "Total_Year": 5343.0, "January_He": 1001.0, "February_H": 679.0, "March_Heat": 376.0, "April_Heat": 57.0, "May_Heatin": 1.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 188.0, "November_H": 634.0, "December_H": 983.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213088205955374, 48.788652499898525, 0.0 ], [ 9.213033080138965, 48.788650263871801, 0.0 ], [ 9.212973190462519, 48.788647856781481, 0.0 ], [ 9.212977494165825, 48.788603606385671, 0.0 ], [ 9.213037111993357, 48.7886061039003, 0.0 ], [ 9.213091829876626, 48.788608430603617, 0.0 ], [ 9.213093055054511, 48.788608518260233, 0.0 ], [ 9.213088205955374, 48.788652499898525, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000300bf", "Latitude": 48.79132, "Longitude": 9.20985, "X_coordina": 3515491.53, "Y_coordina": 5406004.91, "LOD": "LOD2", "Year_of_co": 1948, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 551.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 198.5, "Total_wall": 370.4, "Total_wa00": 0.0, "Total_outw": 693.0, "Total_shar": 122.7, "Total_roof": 307.0, "Gross_volu": 1853.2, "Is_Gross_v": "false", "Heated_vol": 1722.5, "Ridge_mean": 11.9, "Eaves_mean": 6.8, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.492, "Heated_are": 551.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 44.6, "Total_Year": 33341.0, "January_He": 6124.0, "February_H": 4236.0, "March_Heat": 2539.0, "April_Heat": 501.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 62.0, "October_He": 1258.0, "November_H": 3867.0, "December_H": 6006.0, "PV_potenti": 15.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209834543253978, 48.791452581340288, 0.0 ], [ 9.209778983356324, 48.791444859208646, 0.0 ], [ 9.209720836147939, 48.791436782067592, 0.0 ], [ 9.209784900848589, 48.791231999246961, 0.0 ], [ 9.209843455742758, 48.791239985689458, 0.0 ], [ 9.209898470291012, 48.791247528937035, 0.0 ], [ 9.209834543253978, 48.791452581340288, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000300c0", "Latitude": 48.79131, "Longitude": 9.20963, "X_coordina": 3515475.32, "Y_coordina": 5406004.0, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 81.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 87.8, "Total_wall": 83.2, "Total_wa00": 0.0, "Total_outw": 304.4, "Total_shar": 0.0, "Total_roof": 87.8, "Gross_volu": 169.8, "Is_Gross_v": "false", "Heated_vol": 169.8, "Ridge_mean": 1.9, "Eaves_mean": 1.93, "Storey_num": 1, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.524, "Heated_are": 81.3, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209645005608154, 48.791267593983505, 0.0 ], [ 9.209606403685498, 48.791410193170002, 0.0 ], [ 9.209533010405753, 48.791401334370335, 0.0 ], [ 9.209572429478657, 48.791258823644753, 0.0 ], [ 9.209645005608154, 48.791267593983505, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002fdf2", "Latitude": 48.78801, "Longitude": 9.21034, "X_coordina": 3515527.9999999995, "Y_coordina": 5405636.72, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 147.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.6, "Total_wall": 86.8, "Total_wa00": 0.0, "Total_outw": 171.6, "Total_shar": 245.7, "Total_roof": 98.0, "Gross_volu": 559.2, "Is_Gross_v": "false", "Heated_vol": 502.5, "Ridge_mean": 13.0, "Eaves_mean": 6.7, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.457, "Heated_are": 147.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 50.0, "Total_Year": 9681.0, "January_He": 1759.0, "February_H": 1266.0, "March_Heat": 810.0, "April_Heat": 185.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 423.0, "November_H": 1155.0, "December_H": 1719.0, "PV_potenti": 3.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210341509817844, 48.788067200684289, 0.0 ], [ 9.210282819442888, 48.78805849534897, 0.0 ], [ 9.210223311814389, 48.788049611628281, 0.0 ], [ 9.210242539368569, 48.787993823857512, 0.0 ], [ 9.210301911223283, 48.788002797739949, 0.0 ], [ 9.210361010549232, 48.788011682165951, 0.0 ], [ 9.210341509817844, 48.788067200684289, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002fb31", "Latitude": 48.78809, "Longitude": 9.19584, "X_coordina": 3514462.81, "Y_coordina": 5405642.96, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 978.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 207.7, "Total_wall": 657.7, "Total_wa00": 0.0, "Total_outw": 980.7, "Total_shar": 263.1, "Total_roof": 241.6, "Gross_volu": 3211.1, "Is_Gross_v": "false", "Heated_vol": 3057.2, "Ridge_mean": 17.2, "Eaves_mean": 13.0, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 16, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.356, "Heated_are": 978.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 34.5, "Total_Year": 49245.0, "January_He": 8440.0, "February_H": 5883.0, "March_Heat": 3564.0, "April_Heat": 673.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 63.0, "October_He": 1616.0, "November_H": 5195.0, "December_H": 8297.0, "PV_potenti": 12.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19584898671444, 48.788184931847596, 0.0 ], [ 9.195781971103202, 48.788204469314493, 0.0 ], [ 9.195737761230246, 48.788139349819723, 0.0 ], [ 9.195715040971049, 48.788106026760417, 0.0 ], [ 9.195697642419654, 48.78811136182523, 0.0 ], [ 9.195667123968784, 48.788067441017006, 0.0 ], [ 9.195749089797873, 48.788042932402583, 0.0 ], [ 9.195826434183322, 48.788019870367386, 0.0 ], [ 9.195926060847208, 48.788162319824039, 0.0 ], [ 9.195917905048383, 48.788164761638889, 0.0 ], [ 9.19584898671444, 48.788184931847596, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002fb32", "Latitude": 48.78817, "Longitude": 9.19577, "X_coordina": 3514457.64, "Y_coordina": 5405651.15, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 41.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 50.4, "Total_wall": 51.7, "Total_wa00": 0.0, "Total_outw": 155.7, "Total_shar": 67.6, "Total_roof": 50.4, "Gross_volu": 135.4, "Is_Gross_v": "false", "Heated_vol": 128.7, "Ridge_mean": 2.7, "Eaves_mean": 2.68, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.145, "Heated_are": 41.2, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195716621365094, 48.788232456734619, 0.0 ], [ 9.195666123555789, 48.788160154007002, 0.0 ], [ 9.195737761230246, 48.788139349819723, 0.0 ], [ 9.195782655039647, 48.788205367388244, 0.0 ], [ 9.195786897545194, 48.78821147498374, 0.0 ], [ 9.195716621365094, 48.788232456734619, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f89c", "Latitude": 48.78869, "Longitude": 9.21229, "X_coordina": 3515671.58, "Y_coordina": 5405713.1, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 88.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.7, "Total_wall": 49.8, "Total_wa00": 0.0, "Total_outw": 111.2, "Total_shar": 215.2, "Total_roof": 52.8, "Gross_volu": 316.9, "Is_Gross_v": "false", "Heated_vol": 275.3, "Ridge_mean": 9.3, "Eaves_mean": 5.94, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.486, "Heated_are": 88.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.8, "Total_Year": 5519.0, "January_He": 1032.0, "February_H": 712.0, "March_Heat": 414.0, "April_Heat": 72.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 211.0, "November_H": 661.0, "December_H": 1010.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212189400429633, 48.788733022529009, 0.0 ], [ 9.212193161990022, 48.788689132856753, 0.0 ], [ 9.212251555461243, 48.788691722957353, 0.0 ], [ 9.212308723759737, 48.788694225363422, 0.0 ], [ 9.212304690880506, 48.788738295386899, 0.0 ], [ 9.212247386064023, 48.78873570330682, 0.0 ], [ 9.212189400429633, 48.788733022529009, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f76f", "Latitude": 48.79138, "Longitude": 9.20344, "X_coordina": 3515020.3, "Y_coordina": 5406009.97, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 754.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 178.7, "Total_wall": 360.7, "Total_wa00": 0.0, "Total_outw": 576.1, "Total_shar": 477.1, "Total_roof": 211.8, "Gross_volu": 2495.2, "Is_Gross_v": "false", "Heated_vol": 2356.6, "Ridge_mean": 15.8, "Eaves_mean": 12.12, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 9, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.311, "Heated_are": 754.1, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 35.2, "Total_Year": 38484.0, "January_He": 6502.0, "February_H": 4648.0, "March_Heat": 2900.0, "April_Heat": 542.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 54.0, "October_He": 1388.0, "November_H": 4176.0, "December_H": 6319.0, "PV_potenti": 10.13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203381157314032, 48.791471533092405, 0.0 ], [ 9.203302455089322, 48.791462140159425, 0.0 ], [ 9.203343246265728, 48.791318010520556, 0.0 ], [ 9.203421812176632, 48.791327403666692, 0.0 ], [ 9.203418862048569, 48.79133828963446, 0.0 ], [ 9.203491028581327, 48.791346974648391, 0.0 ], [ 9.203456319243221, 48.791480482608506, 0.0 ], [ 9.203381157314032, 48.791471533092405, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f657", "Latitude": 48.7887, "Longitude": 9.21153, "X_coordina": 3515615.53, "Y_coordina": 5405713.67, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 132.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 48.9, "Total_wall": 131.5, "Total_wa00": 0.0, "Total_outw": 240.7, "Total_shar": 165.4, "Total_roof": 67.3, "Gross_volu": 462.4, "Is_Gross_v": "false", "Heated_vol": 413.5, "Ridge_mean": 11.3, "Eaves_mean": 7.64, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.57, "Heated_are": 132.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 56.9, "Total_Year": 9631.0, "January_He": 1796.0, "February_H": 1288.0, "March_Heat": 835.0, "April_Heat": 199.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 33.0, "October_He": 442.0, "November_H": 1186.0, "December_H": 1748.0, "PV_potenti": 3.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211481798497916, 48.788748711924363, 0.0 ], [ 9.211430070335703, 48.788745389807595, 0.0 ], [ 9.211438540511006, 48.788688362662299, 0.0 ], [ 9.211490268993069, 48.788691774698357, 0.0 ], [ 9.211542542215312, 48.788695275634218, 0.0 ], [ 9.211539233730832, 48.788717582776883, 0.0 ], [ 9.211534601772097, 48.788748794791729, 0.0 ], [ 9.211534207489708, 48.788752122691001, 0.0 ], [ 9.211481798497916, 48.788748711924363, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f658", "Latitude": 48.78867, "Longitude": 9.21128, "X_coordina": 3515596.78, "Y_coordina": 5405710.79, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 23.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 25.9, "Total_wall": 49.1, "Total_wa00": 0.0, "Total_outw": 176.3, "Total_shar": 0.0, "Total_roof": 25.9, "Gross_volu": 74.0, "Is_Gross_v": "false", "Heated_vol": 62.4, "Ridge_mean": 2.8, "Eaves_mean": 2.85, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 1.487, "Heated_are": 23.5, "Mean_Uvalu": 0.46, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211266102966739, 48.788717994242596, 0.0 ], [ 9.211190415660997, 48.78871291749644, 0.0 ], [ 9.211195413832581, 48.788671633374776, 0.0 ], [ 9.211271644676874, 48.788676529273232, 0.0 ], [ 9.211266102966739, 48.788717994242596, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f5c2", "Latitude": 48.79159, "Longitude": 9.20338, "X_coordina": 3515016.08, "Y_coordina": 5406033.66, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 397.3, "SecondaryU": "retail", "Secondar00": 87.2, "BuildingTy": "GMH", "Footprint_": 109.0, "Total_wall": 256.4, "Total_wa00": 0.0, "Total_outw": 387.3, "Total_shar": 425.9, "Total_roof": 128.6, "Gross_volu": 1606.7, "Is_Gross_v": "false", "Heated_vol": 1514.1, "Ridge_mean": 16.6, "Eaves_mean": 12.91, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.318, "Heated_are": 484.5, "Mean_Uvalu": 0.44, "Specific_d": "26,1", "Specific_s": 35.2, "Total_Year": 29732.0, "January_He": 4161.0, "February_H": 2990.0, "March_Heat": 1893.0, "April_Heat": 388.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 893.0, "November_H": 2660.0, "December_H": 4034.0, "PV_potenti": 5.56 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203266864170027, 48.791647085917134, 0.0 ], [ 9.203251614056631, 48.791645314362185, 0.0 ], [ 9.203273052460993, 48.791561827417873, 0.0 ], [ 9.203277273273022, 48.791562269585391, 0.0 ], [ 9.20335202666606, 48.791571129966897, 0.0 ], [ 9.203428550432729, 48.791580256943369, 0.0 ], [ 9.203407789855142, 48.791663023330273, 0.0 ], [ 9.203329769990681, 48.791654168752558, 0.0 ], [ 9.203266864170027, 48.791647085917134, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f5c3", "Latitude": 48.79156, "Longitude": 9.20307, "X_coordina": 3514992.91, "Y_coordina": 5406030.03, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 39.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.7, "Total_wall": 55.7, "Total_wa00": 0.0, "Total_outw": 185.2, "Total_shar": 54.8, "Total_roof": 47.7, "Gross_volu": 171.1, "Is_Gross_v": "false", "Heated_vol": 123.4, "Ridge_mean": 3.6, "Eaves_mean": 3.58, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.01, "Heated_are": 39.5, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202976154079744, 48.791612078862258, 0.0 ], [ 9.202991678315753, 48.791546856885624, 0.0 ], [ 9.202993555373846, 48.791539839535737, 0.0 ], [ 9.203072936694538, 48.791548871787612, 0.0 ], [ 9.203054173091838, 48.791620753833698, 0.0 ], [ 9.202976154079744, 48.791612078862258, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f552", "Latitude": 48.79397, "Longitude": 9.20025, "X_coordina": 3514784.91, "Y_coordina": 5406297.09, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 317.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 198.6, "Total_wall": 207.4, "Total_wa00": 0.0, "Total_outw": 472.1, "Total_shar": 233.8, "Total_roof": 198.6, "Gross_volu": 1187.9, "Is_Gross_v": "false", "Heated_vol": 993.1, "Ridge_mean": 6.0, "Eaves_mean": 5.98, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.543, "Heated_are": 317.8, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 12.0, "Total_Year": 14261.0, "January_He": 1272.0, "February_H": 681.0, "March_Heat": 204.0, "April_Heat": 10.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 22.0, "November_H": 427.0, "December_H": 1202.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200348664935118, 48.793939945820149, 0.0 ], [ 9.200282849297102, 48.793988888802659, 0.0 ], [ 9.20018066480135, 48.794064782119626, 0.0 ], [ 9.200150132028796, 48.794087585853227, 0.0 ], [ 9.200057911904274, 48.794033881885227, 0.0 ], [ 9.200063611440036, 48.794029645575954, 0.0 ], [ 9.200159010201714, 48.79395862002962, 0.0 ], [ 9.200256579899502, 48.793885972004013, 0.0 ], [ 9.200348664935118, 48.793939945820149, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f4d0", "Latitude": 48.79063, "Longitude": 9.19921, "X_coordina": 3514709.56, "Y_coordina": 5405925.46, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 314.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 141.0, "Total_wall": 253.0, "Total_wa00": 0.0, "Total_outw": 472.0, "Total_shar": 352.2, "Total_roof": 154.3, "Gross_volu": 1225.4, "Is_Gross_v": "false", "Heated_vol": 1084.4, "Ridge_mean": 10.1, "Eaves_mean": 7.2, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 4, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.475, "Heated_are": 314.6, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 47.8, "Total_Year": 20016.0, "January_He": 3678.0, "February_H": 2620.0, "March_Heat": 1592.0, "April_Heat": 314.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 796.0, "November_H": 2367.0, "December_H": 3614.0, "PV_potenti": 9.27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199172278516246, 48.790594760591475, 0.0 ], [ 9.199230355529371, 48.790551406867202, 0.0 ], [ 9.199233492810436, 48.790553199911784, 0.0 ], [ 9.199295561213585, 48.790589871269859, 0.0 ], [ 9.199246302561425, 48.7906261957271, 0.0 ], [ 9.199160679128765, 48.790690009764248, 0.0 ], [ 9.19909052400102, 48.7907421069253, 0.0 ], [ 9.199033641726823, 48.790709113362574, 0.0 ], [ 9.199083167465771, 48.790671439680771, 0.0 ], [ 9.199085429483343, 48.790658396845622, 0.0 ], [ 9.199171596266392, 48.790594312153388, 0.0 ], [ 9.199172278516246, 48.790594760591475, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f4d1", "Latitude": 48.7905, "Longitude": 9.19906, "X_coordina": 3514698.95, "Y_coordina": 5405911.42, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1615.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 359.2, "Total_wall": 1070.2, "Total_wa00": 0.0, "Total_outw": 1564.2, "Total_shar": 69.6, "Total_roof": 410.6, "Gross_volu": 5406.0, "Is_Gross_v": "false", "Heated_vol": 5046.8, "Ridge_mean": 19.5, "Eaves_mean": 5.09, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 26, "Number_o00": 46, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.356, "Heated_are": 1615.0, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 33.9, "Total_Year": 80375.0, "January_He": 13623.0, "February_H": 9607.0, "March_Heat": 5853.0, "April_Heat": 1073.0, "May_Heatin": 25.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 99.0, "October_He": 2688.0, "November_H": 8515.0, "December_H": 13311.0, "PV_potenti": 13.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199171596266392, 48.790594312153388, 0.0 ], [ 9.199083745711439, 48.790542398288743, 0.0 ], [ 9.198966097161763, 48.790629827531234, 0.0 ], [ 9.1989533092885, 48.790631108555949, 0.0 ], [ 9.198804476370295, 48.790541711747991, 0.0 ], [ 9.198980880752892, 48.790410478278837, 0.0 ], [ 9.199130935592498, 48.790499153359093, 0.0 ], [ 9.199137040597709, 48.790494286926524, 0.0 ], [ 9.199234985571549, 48.790552118245692, 0.0 ], [ 9.199233492810436, 48.790553199911784, 0.0 ], [ 9.199230355529371, 48.790551406867202, 0.0 ], [ 9.199172278516246, 48.790594760591475, 0.0 ], [ 9.199171596266392, 48.790594312153388, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f46d", "Latitude": 48.79167, "Longitude": 9.20254, "X_coordina": 3514953.95, "Y_coordina": 5406041.69, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 710.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 114.4, "Total_wall": 701.6, "Total_wa00": 0.0, "Total_outw": 925.5, "Total_shar": 120.4, "Total_roof": 189.7, "Gross_volu": 2287.9, "Is_Gross_v": "false", "Heated_vol": 2218.9, "Ridge_mean": 23.1, "Eaves_mean": 17.69, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 13, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.45, "Heated_are": 710.1, "Mean_Uvalu": 0.54, "Specific_d": "15,8", "Specific_s": 44.8, "Total_Year": 43035.0, "January_He": 7985.0, "February_H": 5483.0, "March_Heat": 3224.0, "April_Heat": 593.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 73.0, "October_He": 1576.0, "November_H": 4988.0, "December_H": 7845.0, "PV_potenti": 5.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202508792284494, 48.791645364100823, 0.0 ], [ 9.202602651763936, 48.791701041564835, 0.0 ], [ 9.202588268922987, 48.791711857700534, 0.0 ], [ 9.202529651615482, 48.791755843523845, 0.0 ], [ 9.202386815019777, 48.791670847069376, 0.0 ], [ 9.202460088841796, 48.791616404413297, 0.0 ], [ 9.202489010474476, 48.791633528970486, 0.0 ], [ 9.202508792284494, 48.791645364100823, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f378", "Latitude": 48.79071, "Longitude": 9.20522, "X_coordina": 3515150.95, "Y_coordina": 5405935.56, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 680.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 221.9, "Total_wall": 480.8, "Total_wa00": 0.0, "Total_outw": 830.5, "Total_shar": 0.0, "Total_roof": 368.3, "Gross_volu": 2347.3, "Is_Gross_v": "false", "Heated_vol": 2125.4, "Ridge_mean": 14.1, "Eaves_mean": 7.0, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.481, "Heated_are": 680.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.3, "Total_Year": 42269.0, "January_He": 7768.0, "February_H": 5402.0, "March_Heat": 3308.0, "April_Heat": 693.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 88.0, "October_He": 1634.0, "November_H": 4937.0, "December_H": 7640.0, "PV_potenti": 18.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205094957299272, 48.790818885439769, 0.0 ], [ 9.205103449769691, 48.790631919113736, 0.0 ], [ 9.205174361032872, 48.790633321497104, 0.0 ], [ 9.205248946840976, 48.790634717287737, 0.0 ], [ 9.205239232259196, 48.790822225344236, 0.0 ], [ 9.205166414303822, 48.790820556626912, 0.0 ], [ 9.205094957299272, 48.790818885439769, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f098", "Latitude": 48.78912, "Longitude": 9.19915, "X_coordina": 3514705.44, "Y_coordina": 5405757.64, "LOD": "LOD2", "Year_of_co": 1932, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1048.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 187.9, "Total_wall": 634.0, "Total_wa00": 0.0, "Total_outw": 846.3, "Total_shar": 387.5, "Total_roof": 278.5, "Gross_volu": 3281.9, "Is_Gross_v": "false", "Heated_vol": 3276.9, "Ridge_mean": 20.3, "Eaves_mean": 13.72, "Storey_num": 7, "Average_St": 2.9, "Number_of_": 17, "Number_o00": 26, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.336, "Heated_are": 1048.6, "Mean_Uvalu": 0.59, "Specific_d": "15,8", "Specific_s": 42.4, "Total_Year": 61068.0, "January_He": 10403.0, "February_H": 7664.0, "March_Heat": 5218.0, "April_Heat": 1408.0, "May_Heatin": 55.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 180.0, "October_He": 2588.0, "November_H": 6836.0, "December_H": 10104.0, "PV_potenti": 11.54 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199129443771714, 48.789055971579621, 0.0 ], [ 9.199129871611374, 48.789060916640146, 0.0 ], [ 9.199134995019131, 48.789117559675063, 0.0 ], [ 9.199181669285242, 48.789116309946245, 0.0 ], [ 9.199185950589612, 48.789166479932767, 0.0 ], [ 9.199190086558231, 48.789214312155437, 0.0 ], [ 9.19902856725318, 48.789219627152384, 0.0 ], [ 9.199014869943435, 48.789059676667321, 0.0 ], [ 9.199023986900636, 48.789059391139936, 0.0 ], [ 9.199068346875912, 48.789057965609487, 0.0 ], [ 9.199129443771714, 48.789055971579621, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f099", "Latitude": 48.78901, "Longitude": 9.19916, "X_coordina": 3514706.37, "Y_coordina": 5405745.28, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 350.5, "SecondaryU": "retail", "Secondar00": 75.8, "BuildingTy": "MFH", "Footprint_": 94.7, "Total_wall": 426.6, "Total_wa00": 0.0, "Total_outw": 599.7, "Total_shar": 145.5, "Total_roof": 94.7, "Gross_volu": 1180.1, "Is_Gross_v": "false", "Heated_vol": 1180.1, "Ridge_mean": 12.5, "Eaves_mean": 12.46, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 5, "Number_o00": 13, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.522, "Heated_are": 426.2, "Mean_Uvalu": 0.45, "Specific_d": "26,0", "Specific_s": 38.1, "Total_Year": 27342.0, "January_He": 4079.0, "February_H": 2780.0, "March_Heat": 1712.0, "April_Heat": 392.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 759.0, "November_H": 2451.0, "December_H": 4027.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199211010145216, 48.789033709288965, 0.0 ], [ 9.199194681500002, 48.789034277076951, 0.0 ], [ 9.199197090774408, 48.789058462369312, 0.0 ], [ 9.199129871611374, 48.789060916640146, 0.0 ], [ 9.199129443771714, 48.789055971579621, 0.0 ], [ 9.199068346875912, 48.789057965609487, 0.0 ], [ 9.199023986900636, 48.789059391139936, 0.0 ], [ 9.199018302195157, 48.788998432734694, 0.0 ], [ 9.199207987450743, 48.788992079871107, 0.0 ], [ 9.199211010145216, 48.789033709288965, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f094", "Latitude": 48.78834, "Longitude": 9.20064, "X_coordina": 3514815.59, "Y_coordina": 5405671.61, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1360.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 233.7, "Total_wall": 822.5, "Total_wa00": 0.0, "Total_outw": 1151.9, "Total_shar": 344.0, "Total_roof": 296.3, "Gross_volu": 4484.8, "Is_Gross_v": "false", "Heated_vol": 4251.1, "Ridge_mean": 22.0, "Eaves_mean": 16.29, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 22, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.313, "Heated_are": 1360.4, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 30.8, "Total_Year": 63447.0, "January_He": 10474.0, "February_H": 7354.0, "March_Heat": 4510.0, "April_Heat": 837.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1963.0, "November_H": 6426.0, "December_H": 10252.0, "PV_potenti": 14.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200694522474302, 48.788347893499278, 0.0 ], [ 9.200706893928153, 48.788344724609807, 0.0 ], [ 9.200730189923192, 48.788385059725286, 0.0 ], [ 9.200717682372836, 48.788388228854444, 0.0 ], [ 9.200685732511641, 48.788396017972687, 0.0 ], [ 9.200695737588404, 48.788413715495857, 0.0 ], [ 9.200633333353132, 48.788428931411097, 0.0 ], [ 9.200542514230305, 48.788451120901065, 0.0 ], [ 9.200531959830659, 48.788432165390155, 0.0 ], [ 9.200530192475556, 48.788432618086041, 0.0 ], [ 9.200516840066891, 48.788428684696029, 0.0 ], [ 9.200511219965783, 48.788418533109173, 0.0 ], [ 9.200517719235387, 48.788410248816362, 0.0 ], [ 9.200519350859956, 48.788409886280661, 0.0 ], [ 9.200490841046383, 48.788358859285488, 0.0 ], [ 9.200479692576437, 48.788361576404341, 0.0 ], [ 9.200466807530558, 48.788338308609276, 0.0 ], [ 9.200477819908112, 48.788335591728575, 0.0 ], [ 9.200467539523906, 48.788317085352617, 0.0 ], [ 9.200651216796752, 48.788272253246994, 0.0 ], [ 9.200652576240349, 48.788271891183655, 0.0 ], [ 9.200655729922138, 48.788277820649746, 0.0 ], [ 9.200660663143776, 48.788286354800938, 0.0 ], [ 9.200678489382156, 48.788320135031434, 0.0 ], [ 9.200681503754915, 48.788325255426678, 0.0 ], [ 9.200690273983765, 48.788340437240173, 0.0 ], [ 9.200694522474302, 48.788347893499278, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002f096", "Latitude": 48.78822, "Longitude": 9.20073, "X_coordina": 3514821.81, "Y_coordina": 5405658.66, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 32.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 35.3, "Total_wall": 33.5, "Total_wa00": 0.0, "Total_outw": 128.9, "Total_shar": 16.7, "Total_roof": 35.3, "Gross_volu": 55.5, "Is_Gross_v": "false", "Heated_vol": 55.5, "Ridge_mean": 1.6, "Eaves_mean": 1.59, "Storey_num": 1, "Average_St": 1.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.875, "Heated_are": 32.7, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200651216796752, 48.788272253246994, 0.0 ], [ 9.200626956473895, 48.788228952314199, 0.0 ], [ 9.200695614397443, 48.788212196800927, 0.0 ], [ 9.200707768512158, 48.788222786609438, 0.0 ], [ 9.200738258809075, 48.788258523078454, 0.0 ], [ 9.200655729922138, 48.788277820649746, 0.0 ], [ 9.200652576240349, 48.788271891183655, 0.0 ], [ 9.200651216796752, 48.788272253246994, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ef3c", "Latitude": 48.79561, "Longitude": 9.2093, "X_coordina": 3515449.34, "Y_coordina": 5406481.23, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 155.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 66.1, "Total_wall": 145.6, "Total_wa00": 0.0, "Total_outw": 274.0, "Total_shar": 116.3, "Total_roof": 104.1, "Gross_volu": 538.8, "Is_Gross_v": "false", "Heated_vol": 484.8, "Ridge_mean": 10.8, "Eaves_mean": 5.46, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.619, "Heated_are": 155.1, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 57.3, "Total_Year": 11343.0, "January_He": 2172.0, "February_H": 1516.0, "March_Heat": 941.0, "April_Heat": 233.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 31.0, "October_He": 455.0, "November_H": 1372.0, "December_H": 2154.0, "PV_potenti": 4.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209217220024874, 48.795580477201014, 0.0 ], [ 9.20924078194539, 48.795584121258173, 0.0 ], [ 9.209316915767658, 48.795595942733918, 0.0 ], [ 9.209302925926375, 48.795635714366483, 0.0 ], [ 9.209290012955289, 48.795672606486725, 0.0 ], [ 9.209189909867456, 48.795657411441319, 0.0 ], [ 9.209202959763395, 48.795620698930556, 0.0 ], [ 9.209217220024874, 48.795580477201014, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ee9f", "Latitude": 48.79427, "Longitude": 9.20291, "X_coordina": 3514980.34, "Y_coordina": 5406331.48, "LOD": "LOD2", "Year_of_co": 2010, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1006.9, "SecondaryU": "retail", "Secondar00": 203.9, "BuildingTy": "GMH", "Footprint_": 254.8, "Total_wall": 614.4, "Total_wa00": 0.0, "Total_outw": 891.7, "Total_shar": 477.8, "Total_roof": 293.3, "Gross_volu": 4038.4, "Is_Gross_v": "false", "Heated_vol": 3783.6, "Ridge_mean": 17.4, "Eaves_mean": 14.28, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 19, "Number_o00": 28, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.299, "Heated_are": 1210.7, "Mean_Uvalu": 0.44, "Specific_d": "25,5", "Specific_s": 32.9, "Total_Year": 70687.0, "January_He": 9688.0, "February_H": 7057.0, "March_Heat": 4478.0, "April_Heat": 906.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 90.0, "October_He": 2059.0, "November_H": 6170.0, "December_H": 9386.0, "PV_potenti": 14.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202862820608116, 48.794220422165743, 0.0 ], [ 9.202918863581836, 48.794178688817361, 0.0 ], [ 9.202971936336809, 48.7942104282278, 0.0 ], [ 9.203021871149875, 48.794240284750991, 0.0 ], [ 9.203025418558846, 48.794242436662429, 0.0 ], [ 9.202813882133047, 48.794403952429931, 0.0 ], [ 9.202757127573854, 48.794370510882644, 0.0 ], [ 9.202703511092864, 48.79433895217835, 0.0 ], [ 9.202862820608116, 48.794220422165743, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002eea0", "Latitude": 48.79422, "Longitude": 9.20269, "X_coordina": 3514964.05, "Y_coordina": 5406326.09, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 49.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 61.2, "Total_wall": 59.8, "Total_wa00": 0.0, "Total_outw": 177.3, "Total_shar": 67.0, "Total_roof": 61.2, "Gross_volu": 162.3, "Is_Gross_v": "false", "Heated_vol": 155.8, "Ridge_mean": 2.7, "Eaves_mean": 2.66, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.137, "Heated_are": 49.9, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202566128035524, 48.794258172791437, 0.0 ], [ 9.202569656601, 48.7942556487248, 0.0 ], [ 9.202659361969328, 48.79419110562263, 0.0 ], [ 9.202718845583773, 48.794226340886262, 0.0 ], [ 9.202629430543864, 48.794295379701559, 0.0 ], [ 9.202566128035524, 48.794258172791437, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002eea1", "Latitude": 48.79416, "Longitude": 9.2029, "X_coordina": 3514979.92, "Y_coordina": 5406319.15, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 35.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 39.6, "Total_wall": 44.0, "Total_wa00": 0.0, "Total_outw": 138.8, "Total_shar": 45.4, "Total_roof": 39.6, "Gross_volu": 91.8, "Is_Gross_v": "false", "Heated_vol": 91.8, "Ridge_mean": 2.3, "Eaves_mean": 2.32, "Storey_num": 1, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.342, "Heated_are": 35.9, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202797747223972, 48.794182858807645, 0.0 ], [ 9.202854741122627, 48.79414067419772, 0.0 ], [ 9.202918863581836, 48.794178688817361, 0.0 ], [ 9.202862820608116, 48.794220422165743, 0.0 ], [ 9.202797747223972, 48.794182858807645, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ee6e", "Latitude": 48.79441, "Longitude": 9.20515, "X_coordina": 3515144.98, "Y_coordina": 5406347.25, "LOD": "LOD2", "Year_of_co": 1934, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1020.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 188.1, "Total_wall": 826.1, "Total_wa00": 0.0, "Total_outw": 1168.0, "Total_shar": 0.0, "Total_roof": 251.4, "Gross_volu": 3376.4, "Is_Gross_v": "false", "Heated_vol": 3188.3, "Ridge_mean": 18.5, "Eaves_mean": 15.64, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 16, "Number_o00": 27, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.391, "Heated_are": 1020.2, "Mean_Uvalu": 0.61, "Specific_d": "15,8", "Specific_s": 45.4, "Total_Year": 62499.0, "January_He": 11213.0, "February_H": 7944.0, "March_Heat": 5083.0, "April_Heat": 1210.0, "May_Heatin": 53.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 158.0, "October_He": 2518.0, "November_H": 7152.0, "December_H": 11008.0, "PV_potenti": 9.23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205027545942688, 48.794348776097252, 0.0 ], [ 9.205086805861329, 48.794362069187393, 0.0 ], [ 9.205087481250956, 48.79436080905473, 0.0 ], [ 9.205161724396847, 48.794376952975654, 0.0 ], [ 9.205161184746439, 48.794378122943357, 0.0 ], [ 9.205222621669451, 48.794391232238027, 0.0 ], [ 9.20522855117572, 48.794410105618695, 0.0 ], [ 9.205186074101736, 48.794440485549934, 0.0 ], [ 9.205189212570474, 48.79444245827623, 0.0 ], [ 9.205137510402563, 48.794480228357976, 0.0 ], [ 9.205134645608929, 48.794478614837033, 0.0 ], [ 9.205092579666552, 48.794509713389544, 0.0 ], [ 9.204988483481072, 48.794448930559106, 0.0 ], [ 9.204982989115855, 48.794436620811524, 0.0 ], [ 9.205027545942688, 48.794348776097252, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002e938", "Latitude": 48.78918, "Longitude": 9.20585, "X_coordina": 3515197.83, "Y_coordina": 5405766.45, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1290.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 202.4, "Total_wall": 796.1, "Total_wa00": 0.0, "Total_outw": 1082.9, "Total_shar": 285.2, "Total_roof": 325.4, "Gross_volu": 4234.8, "Is_Gross_v": "false", "Heated_vol": 4032.5, "Ridge_mean": 24.9, "Eaves_mean": 17.57, "Storey_num": 9, "Average_St": 2.7, "Number_of_": 24, "Number_o00": 46, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.324, "Heated_are": 1290.4, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 34.3, "Total_Year": 64679.0, "January_He": 10572.0, "February_H": 7737.0, "March_Heat": 5138.0, "April_Heat": 1229.0, "May_Heatin": 37.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 117.0, "October_He": 2353.0, "November_H": 6754.0, "December_H": 10302.0, "PV_potenti": 14.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205925149507008, 48.789224676588056, 0.0 ], [ 9.205889361804982, 48.789225729737439, 0.0 ], [ 9.205872945274976, 48.789238078625708, 0.0 ], [ 9.205800766221628, 48.789292251747533, 0.0 ], [ 9.205797628786023, 48.789290458881595, 0.0 ], [ 9.205682493150038, 48.78922331177322, 0.0 ], [ 9.205818169716508, 48.789121905267642, 0.0 ], [ 9.205915730441074, 48.789117864144032, 0.0 ], [ 9.20592058415385, 48.789173248428696, 0.0 ], [ 9.205925149507008, 48.789224676588056, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002e862", "Latitude": 48.78908, "Longitude": 9.19563, "X_coordina": 3514446.95, "Y_coordina": 5405752.44, "LOD": "LOD2", "Year_of_co": 2013, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 966.6, "SecondaryU": "retail", "Secondar00": 144.8, "BuildingTy": "HH", "Footprint_": 181.0, "Total_wall": 865.0, "Total_wa00": 0.0, "Total_outw": 1175.6, "Total_shar": 162.6, "Total_roof": 272.9, "Gross_volu": 3653.9, "Is_Gross_v": "false", "Heated_vol": 3472.9, "Ridge_mean": 23.1, "Eaves_mean": 17.7, "Storey_num": 8, "Average_St": 2.8, "Number_of_": 20, "Number_o00": 38, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.375, "Heated_are": 1111.3, "Mean_Uvalu": 0.48, "Specific_d": "23,3", "Specific_s": 39.3, "Total_Year": 69527.0, "January_He": 10544.0, "February_H": 7608.0, "March_Heat": 4886.0, "April_Heat": 1094.0, "May_Heatin": 39.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 129.0, "October_He": 2337.0, "November_H": 6734.0, "December_H": 10274.0, "PV_potenti": 11.11 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195593470928353, 48.789005289966639, 0.0 ], [ 9.195659354033568, 48.789044204904165, 0.0 ], [ 9.195630736595181, 48.789069342220721, 0.0 ], [ 9.195634997333476, 48.789080125819282, 0.0 ], [ 9.195643589182005, 48.789084787251703, 0.0 ], [ 9.195650529772378, 48.789084775459671, 0.0 ], [ 9.195703044372056, 48.789115530033037, 0.0 ], [ 9.195706466557553, 48.789120649864579, 0.0 ], [ 9.195616638466118, 48.78918860491838, 0.0 ], [ 9.195462777951231, 48.789098582848176, 0.0 ], [ 9.19558707855249, 48.789006289984172, 0.0 ], [ 9.195588435606009, 48.789005298519179, 0.0 ], [ 9.195593470928353, 48.789005289966639, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002e863", "Latitude": 48.78903, "Longitude": 9.19573, "X_coordina": 3514454.3, "Y_coordina": 5405746.81, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 85.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 100.2, "Total_wall": 77.2, "Total_wa00": 0.0, "Total_outw": 250.9, "Total_shar": 163.7, "Total_roof": 100.2, "Gross_volu": 367.4, "Is_Gross_v": "false", "Heated_vol": 267.3, "Ridge_mean": 3.7, "Eaves_mean": 3.67, "Storey_num": 1, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.834, "Heated_are": 85.5, "Mean_Uvalu": 0.34, "Specific_d": "non calculated", "Specific_s": 80.9, "Total_Year": 6922.0, "January_He": 1521.0, "February_H": 1100.0, "March_Heat": 793.0, "April_Heat": 295.0, "May_Heatin": 42.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 95.0, "October_He": 528.0, "November_H": 1040.0, "December_H": 1506.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195706466557553, 48.789120649864579, 0.0 ], [ 9.195703044372056, 48.789115530033037, 0.0 ], [ 9.195650529772378, 48.789084775459671, 0.0 ], [ 9.195643589182005, 48.789084787251703, 0.0 ], [ 9.195634997333476, 48.789080125819282, 0.0 ], [ 9.195630736595181, 48.789069342220721, 0.0 ], [ 9.195659354033568, 48.789044204904165, 0.0 ], [ 9.195593470928353, 48.789005289966639, 0.0 ], [ 9.195588435606009, 48.789005298519179, 0.0 ], [ 9.19558707855249, 48.789006289984172, 0.0 ], [ 9.195585441980054, 48.789005393527411, 0.0 ], [ 9.195630494101254, 48.788971955327732, 0.0 ], [ 9.195745345709563, 48.789039652504933, 0.0 ], [ 9.195744260138444, 48.789040463663014, 0.0 ], [ 9.195783271405643, 48.789063417795916, 0.0 ], [ 9.195706466557553, 48.789120649864579, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002e5cc", "Latitude": 48.79068, "Longitude": 9.19978, "X_coordina": 3514751.8, "Y_coordina": 5405931.97, "LOD": "LOD2", "Year_of_co": 1935, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 806.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 178.9, "Total_wall": 813.5, "Total_wa00": 0.0, "Total_outw": 1134.2, "Total_shar": 0.0, "Total_roof": 252.8, "Gross_volu": 3075.6, "Is_Gross_v": "false", "Heated_vol": 2896.7, "Ridge_mean": 19.8, "Eaves_mean": 14.51, "Storey_num": 6, "Average_St": 3.1, "Number_of_": 13, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.422, "Heated_are": 806.7, "Mean_Uvalu": 0.61, "Specific_d": "15,8", "Specific_s": 54.7, "Total_Year": 56887.0, "January_He": 10631.0, "February_H": 7522.0, "March_Heat": 4825.0, "April_Heat": 1206.0, "May_Heatin": 67.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 182.0, "October_He": 2457.0, "November_H": 6770.0, "December_H": 10450.0, "PV_potenti": 11.99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199777180054115, 48.790790195880703, 0.0 ], [ 9.199605568227927, 48.79068843016573, 0.0 ], [ 9.199653334639727, 48.790653367073133, 0.0 ], [ 9.199701100985029, 48.790618303960656, 0.0 ], [ 9.199873660067666, 48.790718719036221, 0.0 ], [ 9.199848963384923, 48.790737016392988, 0.0 ], [ 9.199825352226414, 48.790754502548204, 0.0 ], [ 9.199777180054115, 48.790790195880703, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002e46e", "Latitude": 48.79001, "Longitude": 9.21303, "X_coordina": 3515725.47, "Y_coordina": 5405859.2, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 551.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 142.9, "Total_wall": 266.1, "Total_wa00": 0.0, "Total_outw": 443.5, "Total_shar": 353.1, "Total_roof": 223.2, "Gross_volu": 1865.9, "Is_Gross_v": "false", "Heated_vol": 1723.0, "Ridge_mean": 16.1, "Eaves_mean": 9.99, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 9, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.354, "Heated_are": 551.4, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 38.5, "Total_Year": 29946.0, "January_He": 5156.0, "February_H": 3666.0, "March_Heat": 2339.0, "April_Heat": 504.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 59.0, "October_He": 1162.0, "November_H": 3306.0, "December_H": 5004.0, "PV_potenti": 10.23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213014494084643, 48.7899501444872, 0.0 ], [ 9.21308848265488, 48.790067807562821, 0.0 ], [ 9.213025815185027, 48.790084739220347, 0.0 ], [ 9.212960972474374, 48.790102214408073, 0.0 ], [ 9.212887666514368, 48.789984999607583, 0.0 ], [ 9.212952915474013, 48.789967074091386, 0.0 ], [ 9.213014494084643, 48.7899501444872, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002d86c", "Latitude": 48.79312, "Longitude": 9.20176, "X_coordina": 3514896.61, "Y_coordina": 5406203.81, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1158.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 209.8, "Total_wall": 711.9, "Total_wa00": 0.0, "Total_outw": 1018.9, "Total_shar": 366.0, "Total_roof": 263.0, "Gross_volu": 3830.8, "Is_Gross_v": "false", "Heated_vol": 3621.0, "Ridge_mean": 21.1, "Eaves_mean": 15.02, "Storey_num": 7, "Average_St": 2.9, "Number_of_": 19, "Number_o00": 38, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.321, "Heated_are": 1158.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 33.0, "Total_Year": 56632.0, "January_He": 9527.0, "February_H": 6685.0, "March_Heat": 4114.0, "April_Heat": 744.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 72.0, "October_He": 1907.0, "November_H": 5942.0, "December_H": 9272.0, "PV_potenti": 13.48 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20170757460043, 48.793238687597835, 0.0 ], [ 9.20170268937644, 48.79324229309767, 0.0 ], [ 9.201643757445654, 48.793208405191379, 0.0 ], [ 9.201647556744785, 48.793205520984166, 0.0 ], [ 9.201635824304256, 48.793198617412187, 0.0 ], [ 9.201633777743371, 48.793197362065506, 0.0 ], [ 9.201627340996492, 48.793187391818449, 0.0 ], [ 9.201632747202703, 48.793177940376971, 0.0 ], [ 9.201646180482586, 48.793167755491112, 0.0 ], [ 9.201589839637869, 48.793135121949796, 0.0 ], [ 9.201647243471394, 48.793093386829604, 0.0 ], [ 9.201708989814893, 48.793048496749016, 0.0 ], [ 9.201850461681923, 48.793131877791183, 0.0 ], [ 9.201789805973975, 48.793177215653735, 0.0 ], [ 9.20170757460043, 48.793238687597835, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002d86d", "Latitude": 48.79323, "Longitude": 9.2017, "X_coordina": 3514891.66, "Y_coordina": 5406214.98, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 65.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 36.0, "Total_wall": 49.7, "Total_wa00": 0.0, "Total_outw": 112.5, "Total_shar": 111.9, "Total_roof": 36.0, "Gross_volu": 141.9, "Is_Gross_v": "false", "Heated_vol": 141.9, "Ridge_mean": 4.0, "Eaves_mean": 3.96, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.857, "Heated_are": 65.9, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20170757460043, 48.793238687597835, 0.0 ], [ 9.201713850755629, 48.79324254331835, 0.0 ], [ 9.201657803856603, 48.793283286935079, 0.0 ], [ 9.201592595760621, 48.793245543279319, 0.0 ], [ 9.201643757445654, 48.793208405191379, 0.0 ], [ 9.20170268937644, 48.79324229309767, 0.0 ], [ 9.20170757460043, 48.793238687597835, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002d81e", "Latitude": 48.78827, "Longitude": 9.21003, "X_coordina": 3515505.24, "Y_coordina": 5405665.07, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 145.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 54.6, "Total_wall": 163.3, "Total_wa00": 0.0, "Total_outw": 282.7, "Total_shar": 100.6, "Total_roof": 77.5, "Gross_volu": 478.4, "Is_Gross_v": "false", "Heated_vol": 455.2, "Ridge_mean": 10.6, "Eaves_mean": 6.87, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.636, "Heated_are": 145.7, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 52.1, "Total_Year": 9898.0, "January_He": 1980.0, "February_H": 1265.0, "March_Heat": 709.0, "April_Heat": 135.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 18.0, "October_He": 333.0, "November_H": 1171.0, "December_H": 1976.0, "PV_potenti": 3.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210033245264645, 48.788289515060121, 0.0 ], [ 9.210032420243056, 48.788320090607947, 0.0 ], [ 9.209932798707293, 48.78831901332574, 0.0 ], [ 9.209933760252168, 48.788288527453403, 0.0 ], [ 9.209934968464598, 48.788251926322552, 0.0 ], [ 9.210034181229524, 48.788252914424774, 0.0 ], [ 9.210033245264645, 48.788289515060121, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002d43a", "Latitude": 48.78823, "Longitude": 9.20232, "X_coordina": 3514938.62, "Y_coordina": 5405659.84, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 25.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 31.7, "Total_wall": 57.1, "Total_wa00": 0.0, "Total_outw": 191.6, "Total_shar": 0.0, "Total_roof": 31.7, "Gross_volu": 111.9, "Is_Gross_v": "false", "Heated_vol": 80.2, "Ridge_mean": 3.5, "Eaves_mean": 3.52, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.279, "Heated_are": 25.7, "Mean_Uvalu": 0.45, "Specific_d": "32,9", "Specific_s": 50.5, "Total_Year": 2138.0, "January_He": 362.0, "February_H": 238.0, "March_Heat": 120.0, "April_Heat": 17.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 28.0, "November_H": 181.0, "December_H": 349.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202249904040588, 48.788285462984661, 0.0 ], [ 9.202218440530805, 48.788244872747214, 0.0 ], [ 9.202295094944519, 48.788220099033374, 0.0 ], [ 9.202326150598813, 48.788260779890322, 0.0 ], [ 9.202249904040588, 48.788285462984661, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002d0ec", "Latitude": 48.78959, "Longitude": 9.19776, "X_coordina": 3514603.33, "Y_coordina": 5405810.04, "LOD": "LOD2", "Year_of_co": 1943, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 717.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 105.4, "Total_wall": 560.4, "Total_wa00": 0.0, "Total_outw": 732.5, "Total_shar": 289.0, "Total_roof": 187.0, "Gross_volu": 2346.7, "Is_Gross_v": "false", "Heated_vol": 2241.3, "Ridge_mean": 26.2, "Eaves_mean": 18.29, "Storey_num": 10, "Average_St": 2.5, "Number_of_": 13, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.376, "Heated_are": 717.2, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 40.1, "Total_Year": 40126.0, "January_He": 7167.0, "February_H": 4930.0, "March_Heat": 3029.0, "April_Heat": 629.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 76.0, "October_He": 1466.0, "November_H": 4421.0, "December_H": 7023.0, "PV_potenti": 7.85 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197690999732528, 48.789550152434444, 0.0 ], [ 9.197810516119077, 48.789591761684996, 0.0 ], [ 9.19776216932998, 48.789652363328777, 0.0 ], [ 9.19773571027673, 48.789672461735265, 0.0 ], [ 9.197619054505859, 48.789631566887707, 0.0 ], [ 9.197654134431049, 48.789588792955463, 0.0 ], [ 9.197659175109074, 48.789590133158008, 0.0 ], [ 9.197690999732528, 48.789550152434444, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002d0ed", "Latitude": 48.78965, "Longitude": 9.1977, "X_coordina": 3514599.12, "Y_coordina": 5405817.1, "LOD": "LOD2", "Year_of_co": 1943, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 49.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 58.8, "Total_wall": 42.2, "Total_wa00": 0.0, "Total_outw": 127.5, "Total_shar": 114.0, "Total_roof": 58.8, "Gross_volu": 169.0, "Is_Gross_v": "false", "Heated_vol": 153.3, "Ridge_mean": 2.9, "Eaves_mean": 2.87, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.971, "Heated_are": 49.1, "Mean_Uvalu": 0.36, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197707215833722, 48.789694092331914, 0.0 ], [ 9.197645797417984, 48.789718387220105, 0.0 ], [ 9.197579775453272, 48.789679383737159, 0.0 ], [ 9.197619054505859, 48.789631566887707, 0.0 ], [ 9.19773570851005, 48.78967201212015, 0.0 ], [ 9.197707215833722, 48.789694092331914, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002cf31", "Latitude": 48.79098, "Longitude": 9.21298, "X_coordina": 3515720.99, "Y_coordina": 5405967.54, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 368.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 201.9, "Total_wall": 169.5, "Total_wa00": 0.0, "Total_outw": 344.0, "Total_shar": 168.3, "Total_roof": 201.9, "Gross_volu": 891.2, "Is_Gross_v": "false", "Heated_vol": 891.2, "Ridge_mean": 4.4, "Eaves_mean": 4.42, "Storey_num": 2, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.643, "Heated_are": 368.1, "Mean_Uvalu": 0.31, "Specific_d": "73,0", "Specific_s": 45.5, "Total_Year": 43624.0, "January_He": 3706.0, "February_H": 2844.0, "March_Heat": 2107.0, "April_Heat": 795.0, "May_Heatin": 84.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 1, "September_": 164.0, "October_He": 1046.0, "November_H": 2451.0, "December_H": 3552.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.2128199699404, 48.790936696511459, 0.0 ], [ 9.212989667295938, 48.790933325382163, 0.0 ], [ 9.213031853655485, 48.790932527962802, 0.0 ], [ 9.213033327661643, 48.790959232549959, 0.0 ], [ 9.213036593559158, 48.79095913658486, 0.0 ], [ 9.213042221603915, 48.791066944587392, 0.0 ], [ 9.212990374274444, 48.79106820949675, 0.0 ], [ 9.212824404557072, 48.79101986766014, 0.0 ], [ 9.212821890528289, 48.790972482561152, 0.0 ], [ 9.212820710499894, 48.790950903074176, 0.0 ], [ 9.2128199699404, 48.790936696511459, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002cde4", "Latitude": 48.79245, "Longitude": 9.20176, "X_coordina": 3514896.33, "Y_coordina": 5406129.35, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 582.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 129.0, "Total_wall": 578.6, "Total_wa00": 0.0, "Total_outw": 788.5, "Total_shar": 146.2, "Total_roof": 129.0, "Gross_volu": 1541.7, "Is_Gross_v": "false", "Heated_vol": 1541.7, "Ridge_mean": 12.0, "Eaves_mean": 11.96, "Storey_num": 5, "Average_St": 2.4, "Number_of_": 7, "Number_o00": 14, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.543, "Heated_are": 582.7, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 36.9, "Total_Year": 30755.0, "January_He": 5438.0, "February_H": 3742.0, "March_Heat": 2197.0, "April_Heat": 405.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 992.0, "November_H": 3319.0, "December_H": 5377.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201652230566182, 48.792469937883268, 0.0 ], [ 9.20165996695286, 48.792464618844051, 0.0 ], [ 9.201666514124799, 48.792468204322276, 0.0 ], [ 9.201659051378, 48.792473882577099, 0.0 ], [ 9.201667917281704, 48.792478722925011, 0.0 ], [ 9.201717448189823, 48.792442396967523, 0.0 ], [ 9.20168661808434, 48.792424556172875, 0.0 ], [ 9.201729092692874, 48.792393458136445, 0.0 ], [ 9.201732093718242, 48.792395161427542, 0.0 ], [ 9.201819672987472, 48.792445814802413, 0.0 ], [ 9.201820491385027, 48.792446262986076, 0.0 ], [ 9.201767022326228, 48.79248475405408, 0.0 ], [ 9.201788849035065, 48.792497395035696, 0.0 ], [ 9.201708248355288, 48.792557964894307, 0.0 ], [ 9.201668958402204, 48.792534743497797, 0.0 ], [ 9.201667600652936, 48.792535555187833, 0.0 ], [ 9.201662007248201, 48.792532237810242, 0.0 ], [ 9.20166322853782, 48.792531336435651, 0.0 ], [ 9.201613979964765, 48.792502287426032, 0.0 ], [ 9.20161262221548, 48.792503099115414, 0.0 ], [ 9.201606891637937, 48.792499512204522, 0.0 ], [ 9.201649091998515, 48.792467875136595, 0.0 ], [ 9.201652230566182, 48.792469937883268, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002cb43", "Latitude": 48.79231, "Longitude": 9.19824, "X_coordina": 3514638.07, "Y_coordina": 5406112.3, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 123.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 44.8, "Total_wall": 29.5, "Total_wa00": 0.0, "Total_outw": 62.5, "Total_shar": 338.5, "Total_roof": 71.2, "Gross_volu": 429.4, "Is_Gross_v": "false", "Heated_vol": 384.6, "Ridge_mean": 12.5, "Eaves_mean": 6.45, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.351, "Heated_are": 123.1, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 38.7, "Total_Year": 6709.0, "January_He": 1113.0, "February_H": 821.0, "March_Heat": 563.0, "April_Heat": 150.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 18.0, "October_He": 278.0, "November_H": 730.0, "December_H": 1080.0, "PV_potenti": 3.31 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19821591763642, 48.792282298478597, 0.0 ], [ 9.198219872643955, 48.792284359913452, 0.0 ], [ 9.19826338873186, 48.792309823300464, 0.0 ], [ 9.198264745821415, 48.792308831804462, 0.0 ], [ 9.198265700992506, 48.792309459625073, 0.0 ], [ 9.19822037580197, 48.792342989229084, 0.0 ], [ 9.198177493247782, 48.792374716139619, 0.0 ], [ 9.198175855811396, 48.792373639874455, 0.0 ], [ 9.19817721325855, 48.792372738302475, 0.0 ], [ 9.198133014895248, 48.79234682643915, 0.0 ], [ 9.198130694842277, 48.792345211806264, 0.0 ], [ 9.198172356408163, 48.792314476173708, 0.0 ], [ 9.19821591763642, 48.792282298478597, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ca79", "Latitude": 48.79254, "Longitude": 9.19864, "X_coordina": 3514667.18, "Y_coordina": 5406138.19, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 192.0, "SecondaryU": "retail", "Secondar00": 69.4, "BuildingTy": "MFH", "Footprint_": 86.8, "Total_wall": 202.0, "Total_wa00": 0.0, "Total_outw": 354.6, "Total_shar": 218.2, "Total_roof": 157.6, "Gross_volu": 903.6, "Is_Gross_v": "false", "Heated_vol": 816.8, "Ridge_mean": 13.0, "Eaves_mean": 6.66, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 3, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.522, "Heated_are": 261.4, "Mean_Uvalu": 0.49, "Specific_d": "31,0", "Specific_s": 53.8, "Total_Year": 22165.0, "January_He": 3312.0, "February_H": 2415.0, "March_Heat": 1597.0, "April_Heat": 404.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 834.0, "November_H": 2183.0, "December_H": 3222.0, "PV_potenti": 4.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198573963589475, 48.792619074932865, 0.0 ], [ 9.198542315406078, 48.792600605243301, 0.0 ], [ 9.198509030150387, 48.792581149207528, 0.0 ], [ 9.198506721781284, 48.792582502040545, 0.0 ], [ 9.198501674041001, 48.792579453339769, 0.0 ], [ 9.198506288650588, 48.792576208136062, 0.0 ], [ 9.198506834467258, 48.792576566889529, 0.0 ], [ 9.198514977018016, 48.792570617896295, 0.0 ], [ 9.19851647730435, 48.792571424622267, 0.0 ], [ 9.198555692226803, 48.792541502382328, 0.0 ], [ 9.198601012758026, 48.792506803648983, 0.0 ], [ 9.198598694457253, 48.792505638640506, 0.0 ], [ 9.19860303721031, 48.792502483825302, 0.0 ], [ 9.198602082386273, 48.792501945930489, 0.0 ], [ 9.198609275413697, 48.792496807880404, 0.0 ], [ 9.198613639106728, 48.792498958520412, 0.0 ], [ 9.198615548400022, 48.792499944386861, 0.0 ], [ 9.198613647625265, 48.792501116671851, 0.0 ], [ 9.19864720648682, 48.79252093190005, 0.0 ], [ 9.198680492110956, 48.792540477819038, 0.0 ], [ 9.198681713809291, 48.792539666398937, 0.0 ], [ 9.198685806375691, 48.79254208727474, 0.0 ], [ 9.198688943761642, 48.792543880333355, 0.0 ], [ 9.198682703786124, 48.79254910666765, 0.0 ], [ 9.198680247606877, 48.792547492280768, 0.0 ], [ 9.198582813962915, 48.792620048830521, 0.0 ], [ 9.198584723969976, 48.792621214543409, 0.0 ], [ 9.198580109361338, 48.792624459750236, 0.0 ], [ 9.198572743661817, 48.792620335966717, 0.0 ], [ 9.198573963589475, 48.792619074932865, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ca7a", "Latitude": 48.79248, "Longitude": 9.19873, "X_coordina": 3514673.65, "Y_coordina": 5406131.01, "LOD": "LOD2", "Year_of_co": 1946, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 97.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 53.6, "Total_wall": 97.3, "Total_wa00": 0.0, "Total_outw": 210.6, "Total_shar": 72.1, "Total_roof": 53.6, "Gross_volu": 238.4, "Is_Gross_v": "false", "Heated_vol": 238.4, "Ridge_mean": 4.5, "Eaves_mean": 4.45, "Storey_num": 2, "Average_St": 2.2, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.857, "Heated_are": 97.6, "Mean_Uvalu": 0.43, "Specific_d": "15,8", "Specific_s": 44.2, "Total_Year": 5861.0, "January_He": 1110.0, "February_H": 740.0, "March_Heat": 415.0, "April_Heat": 75.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 197.0, "November_H": 664.0, "December_H": 1104.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198615548400022, 48.792499944386861, 0.0 ], [ 9.198613639106728, 48.792498958520412, 0.0 ], [ 9.198680406410631, 48.792449834989377, 0.0 ], [ 9.198752566562376, 48.792491165242787, 0.0 ], [ 9.198685806375691, 48.79254208727474, 0.0 ], [ 9.198681713809291, 48.792539666398937, 0.0 ], [ 9.198680492110956, 48.792540477819038, 0.0 ], [ 9.19864720648682, 48.79252093190005, 0.0 ], [ 9.198613647625265, 48.792501116671851, 0.0 ], [ 9.198615548400022, 48.792499944386861, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ca3a", "Latitude": 48.78847, "Longitude": 9.19507, "X_coordina": 3514406.15, "Y_coordina": 5405685.14, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 571.7, "SecondaryU": "retail", "Secondar00": 162.3, "BuildingTy": "RH", "Footprint_": 202.8, "Total_wall": 372.8, "Total_wa00": 0.0, "Total_outw": 569.1, "Total_shar": 273.3, "Total_roof": 202.8, "Gross_volu": 1937.4, "Is_Gross_v": "false", "Heated_vol": 1937.4, "Ridge_mean": 9.6, "Eaves_mean": 9.55, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 9, "Number_o00": 20, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.402, "Heated_are": 733.9, "Mean_Uvalu": 0.43, "Specific_d": "28,5", "Specific_s": 35.2, "Total_Year": 46739.0, "January_He": 6057.0, "February_H": 4505.0, "March_Heat": 3090.0, "April_Heat": 869.0, "May_Heatin": 41.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 96.0, "October_He": 1423.0, "November_H": 3888.0, "December_H": 5869.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195159864935675, 48.788508568030814, 0.0 ], [ 9.195060128864871, 48.788583283723128, 0.0 ], [ 9.194886501461754, 48.788483762448855, 0.0 ], [ 9.194996145899406, 48.788402285853714, 0.0 ], [ 9.195167463570002, 48.788502800039012, 0.0 ], [ 9.195159864935675, 48.788508568030814, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ca3b", "Latitude": 48.7884, "Longitude": 9.19515, "X_coordina": 3514412.03, "Y_coordina": 5405676.77, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 108.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 134.8, "Total_wall": 70.3, "Total_wa00": 0.0, "Total_outw": 186.2, "Total_shar": 147.4, "Total_roof": 134.8, "Gross_volu": 417.0, "Is_Gross_v": "false", "Heated_vol": 337.5, "Ridge_mean": 3.1, "Eaves_mean": 3.09, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.855, "Heated_are": 108.0, "Mean_Uvalu": 0.34, "Specific_d": "73,0", "Specific_s": 73.8, "Total_Year": 15854.0, "January_He": 1810.0, "February_H": 1323.0, "March_Heat": 937.0, "April_Heat": 339.0, "May_Heatin": 46.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 80.0, "October_He": 498.0, "November_H": 1169.0, "December_H": 1764.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194996145899406, 48.788402285853714, 0.0 ], [ 9.195092496241354, 48.788331892285882, 0.0 ], [ 9.19521726605514, 48.788466116695304, 0.0 ], [ 9.195182661879715, 48.788491533823034, 0.0 ], [ 9.195167463570002, 48.788502800039012, 0.0 ], [ 9.194996145899406, 48.788402285853714, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002c951", "Latitude": 48.78958, "Longitude": 9.2081, "X_coordina": 3515363.45, "Y_coordina": 5405810.71, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2461, "PrimaryUsa": "non-heated", "PrimaryU00": 881.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 966.8, "Total_wall": 292.0, "Total_wa00": 0.0, "Total_outw": 950.2, "Total_shar": 0.0, "Total_roof": 966.8, "Gross_volu": 2139.6, "Is_Gross_v": "false", "Heated_vol": 2139.6, "Ridge_mean": 2.2, "Eaves_mean": 2.21, "Storey_num": 1, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.04, "Heated_are": 881.4, "Mean_Uvalu": 0.32, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 46.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208269836019605, 48.789447517203406, 0.0 ], [ 9.208273364449493, 48.789477994935339, 0.0 ], [ 9.208303023679385, 48.789738899681552, 0.0 ], [ 9.208072938396272, 48.789750376240008, 0.0 ], [ 9.208065452278115, 48.789684295894943, 0.0 ], [ 9.207841354474448, 48.789695581325873, 0.0 ], [ 9.207819044718693, 48.789500127604633, 0.0 ], [ 9.207815653767026, 48.789469919381773, 0.0 ], [ 9.20782517827648, 48.789469452575403, 0.0 ], [ 9.208260310774286, 48.789447804200591, 0.0 ], [ 9.208269836019605, 48.789447517203406, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002c933", "Latitude": 48.78951, "Longitude": 9.20759, "X_coordina": 3515325.47, "Y_coordina": 5405802.93, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 3714.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 696.1, "Total_wall": 2044.4, "Total_wa00": 0.0, "Total_outw": 2934.7, "Total_shar": 176.0, "Total_roof": 696.1, "Gross_volu": 10223.9, "Is_Gross_v": "false", "Heated_vol": 10223.9, "Ridge_mean": 14.9, "Eaves_mean": 14.88, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.336, "Heated_are": 3714.1, "Mean_Uvalu": 0.36, "Specific_d": "14,6", "Specific_s": 44.1, "Total_Year": 218034.0, "January_He": 36993.0, "February_H": 27882.0, "March_Heat": 20061.0, "April_Heat": 7169.0, "May_Heatin": 716.0, "June_Heati": 21, "July_Heati": 2, "August_Hea": 5, "September_": 1403.0, "October_He": 9941.0, "November_H": 24029.0, "December_H": 35551.0, "PV_potenti": 32.59 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207652247761413, 48.789281824122021, 0.0 ], [ 9.207665319493659, 48.789283509099924, 0.0 ], [ 9.207666262479181, 48.7892811693848, 0.0 ], [ 9.20769676380832, 48.789285250865539, 0.0 ], [ 9.207694211489791, 48.789293348596381, 0.0 ], [ 9.207679033280984, 48.789341844811723, 0.0 ], [ 9.207654454103817, 48.789420752166563, 0.0 ], [ 9.207651230964439, 48.789431189120492, 0.0 ], [ 9.20764278999302, 48.789430395027836, 0.0 ], [ 9.207570659836898, 48.789694001315965, 0.0 ], [ 9.207594626787788, 48.789697555059405, 0.0 ], [ 9.207584827860817, 48.789730484773152, 0.0 ], [ 9.207560453732645, 48.789727201532457, 0.0 ], [ 9.207539103303997, 48.789797110674726, 0.0 ], [ 9.207399264726165, 48.789779827496382, 0.0 ], [ 9.207403548879052, 48.789762644366803, 0.0 ], [ 9.207387753343495, 48.789760514646403, 0.0 ], [ 9.207510409980294, 48.789340440234362, 0.0 ], [ 9.207503191617016, 48.789339104386571, 0.0 ], [ 9.207509236717378, 48.789319939758627, 0.0 ], [ 9.207526966315529, 48.789263076069119, 0.0 ], [ 9.207539494048019, 48.789264851965285, 0.0 ], [ 9.207538278134441, 48.789267012323954, 0.0 ], [ 9.207579399689443, 48.789272333626698, 0.0 ], [ 9.207581551914219, 48.789266214939651, 0.0 ], [ 9.207653449942049, 48.789276336612204, 0.0 ], [ 9.207652247761413, 48.789281824122021, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002c934", "Latitude": 48.78932, "Longitude": 9.208, "X_coordina": 3515355.96, "Y_coordina": 5405782.29, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 2158.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 593.9, "Total_wall": 892.1, "Total_wa00": 0.0, "Total_outw": 1186.8, "Total_shar": 196.3, "Total_roof": 593.9, "Gross_volu": 5438.3, "Is_Gross_v": "false", "Heated_vol": 5438.3, "Ridge_mean": 9.2, "Eaves_mean": 9.15, "Storey_num": 4, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.382, "Heated_are": 2158.6, "Mean_Uvalu": 0.42, "Specific_d": "14,6", "Specific_s": 41.6, "Total_Year": 121414.0, "January_He": 20667.0, "February_H": 15266.0, "March_Heat": 10944.0, "April_Heat": 3799.0, "May_Heatin": 378.0, "June_Heati": 11, "July_Heati": 1, "August_Hea": 2, "September_": 668.0, "October_He": 5112.0, "November_H": 13016.0, "December_H": 20013.0, "PV_potenti": 28.24 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20824614344226, 48.789280032309435, 0.0 ], [ 9.208250948755078, 48.789323097043528, 0.0 ], [ 9.208253491040267, 48.789345483432449, 0.0 ], [ 9.208258720267006, 48.789392324191958, 0.0 ], [ 9.207654454103817, 48.789420752166563, 0.0 ], [ 9.207694211489791, 48.789293348596381, 0.0 ], [ 9.208242686112222, 48.789266729862518, 0.0 ], [ 9.20824410245792, 48.78928012592381, 0.0 ], [ 9.20824614344226, 48.789280032309435, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002c935", "Latitude": 48.78931, "Longitude": 9.20836, "X_coordina": 3515382.47, "Y_coordina": 5405780.98, "LOD": "LOD2", "Year_of_co": 1967, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 54.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 22.9, "Total_wall": 145.7, "Total_wa00": 0.0, "Total_outw": 145.7, "Total_shar": 41.6, "Total_roof": 22.9, "Gross_volu": 183.0, "Is_Gross_v": "false", "Heated_vol": 171.5, "Ridge_mean": 8.0, "Eaves_mean": 8.0, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 1.047, "Heated_are": 54.9, "Mean_Uvalu": 0.54, "Specific_d": "14,6", "Specific_s": 87.1, "Total_Year": 5582.0, "January_He": 1178.0, "February_H": 789.0, "March_Heat": 511.0, "April_Heat": 153.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 236.0, "November_H": 692.0, "December_H": 1178.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208253491040267, 48.789345483432449, 1.718799999979979 ], [ 9.208250948755078, 48.789323097043528, 1.718799999979979 ], [ 9.208368235348516, 48.789317219697892, 1.718799999979979 ], [ 9.208383432993239, 48.789339313414004, 1.718799999979979 ], [ 9.208253491040267, 48.789345483432449, 1.718799999979979 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002c795", "Latitude": 48.79152, "Longitude": 9.20272, "X_coordina": 3514967.03, "Y_coordina": 5406026.09, "LOD": "LOD2", "Year_of_co": 2010, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 725.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 123.6, "Total_wall": 727.7, "Total_wa00": 0.0, "Total_outw": 1001.2, "Total_shar": 116.5, "Total_roof": 204.2, "Gross_volu": 2389.4, "Is_Gross_v": "false", "Heated_vol": 2265.8, "Ridge_mean": 22.4, "Eaves_mean": 15.64, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 12, "Number_o00": 22, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.46, "Heated_are": 725.1, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 38.9, "Total_Year": 39659.0, "January_He": 7176.0, "February_H": 4869.0, "March_Heat": 2806.0, "April_Heat": 484.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 52.0, "October_He": 1320.0, "November_H": 4394.0, "December_H": 7061.0, "PV_potenti": 6.62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202718803405709, 48.791614600420594, 0.0 ], [ 9.202624674662989, 48.791559642912986, 0.0 ], [ 9.202604185257659, 48.791574876052088, 0.0 ], [ 9.202583723331802, 48.791563132058023, 0.0 ], [ 9.202554394865547, 48.791546367934416, 0.0 ], [ 9.202634181401502, 48.791487057836186, 0.0 ], [ 9.202648700627064, 48.791476331377922, 0.0 ], [ 9.202790177594153, 48.791561689599348, 0.0 ], [ 9.202775658374229, 48.791572416075255, 0.0 ], [ 9.202718803405709, 48.791614600420594, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002c6fb", "Latitude": 48.79199, "Longitude": 9.20153, "X_coordina": 3514879.51, "Y_coordina": 5406077.35, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 969.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 194.3, "Total_wall": 700.8, "Total_wa00": 0.0, "Total_outw": 915.1, "Total_shar": 269.9, "Total_roof": 194.3, "Gross_volu": 3030.5, "Is_Gross_v": "false", "Heated_vol": 3030.5, "Ridge_mean": 15.6, "Eaves_mean": 15.59, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 12, "Number_o00": 22, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.359, "Heated_are": 969.8, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 29.5, "Total_Year": 43958.0, "January_He": 7216.0, "February_H": 5019.0, "March_Heat": 3035.0, "April_Heat": 557.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 44.0, "October_He": 1311.0, "November_H": 4352.0, "December_H": 7051.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201413398157367, 48.791965704647239, 0.0 ], [ 9.201440808546167, 48.791945333969437, 0.0 ], [ 9.201474324944293, 48.7919203664989, 0.0 ], [ 9.201615930067147, 48.792003927459035, 0.0 ], [ 9.201574543419163, 48.792034753780712, 0.0 ], [ 9.201568404603961, 48.792031167582216, 0.0 ], [ 9.201549407442632, 48.792045318837367, 0.0 ], [ 9.201555546258213, 48.792048905036857, 0.0 ], [ 9.201557953933428, 48.792072370881343, 0.0 ], [ 9.20152175797913, 48.792073962929827, 0.0 ], [ 9.201491227019131, 48.792096767023622, 0.0 ], [ 9.201350164433583, 48.792012755344992, 0.0 ], [ 9.2013528784749, 48.792010772280399, 0.0 ], [ 9.201380153174751, 48.79199049177803, 0.0 ], [ 9.201413398157367, 48.791965704647239, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002c20d", "Latitude": 48.78874, "Longitude": 9.21307, "X_coordina": 3515728.3, "Y_coordina": 5405718.46, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 88.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.6, "Total_wall": 48.9, "Total_wa00": 0.0, "Total_outw": 111.4, "Total_shar": 219.5, "Total_roof": 53.2, "Gross_volu": 316.9, "Is_Gross_v": "false", "Heated_vol": 275.3, "Ridge_mean": 9.3, "Eaves_mean": 5.93, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.484, "Heated_are": 88.1, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 46.1, "Total_Year": 5461.0, "January_He": 1036.0, "February_H": 701.0, "March_Heat": 389.0, "April_Heat": 60.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 196.0, "November_H": 657.0, "December_H": 1017.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212964990919847, 48.788736266893665, 0.0 ], [ 9.213025016409354, 48.788738583813341, 0.0 ], [ 9.213080686297101, 48.788740728913588, 0.0 ], [ 9.213076789798148, 48.788784708787823, 0.0 ], [ 9.213020983392292, 48.788782474014589, 0.0 ], [ 9.212961501826289, 48.788780066163312, 0.0 ], [ 9.212964990919847, 48.788736266893665, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002c1b3", "Latitude": 48.78866, "Longitude": 9.20986, "X_coordina": 3515492.9, "Y_coordina": 5405708.56, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 94.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.0, "Total_wall": 55.4, "Total_wa00": 0.0, "Total_outw": 139.7, "Total_shar": 197.1, "Total_roof": 65.3, "Gross_volu": 341.3, "Is_Gross_v": "false", "Heated_vol": 294.3, "Ridge_mean": 9.1, "Eaves_mean": 5.41, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.528, "Heated_are": 94.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.6, "Total_Year": 5972.0, "January_He": 1138.0, "February_H": 770.0, "March_Heat": 432.0, "April_Heat": 70.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 219.0, "November_H": 721.0, "December_H": 1118.0, "PV_potenti": 2.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209763256517576, 48.788651410321343, 0.0 ], [ 9.209812377421539, 48.788649612288452, 0.0 ], [ 9.209866396765408, 48.788647625460605, 0.0 ], [ 9.209871118686014, 48.788703009824033, 0.0 ], [ 9.209817372210455, 48.788705176004228, 0.0 ], [ 9.209767843735499, 48.788707154628931, 0.0 ], [ 9.209766981476234, 48.788696185514247, 0.0 ], [ 9.209763256517576, 48.788651410321343, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002bf14", "Latitude": 48.78862, "Longitude": 9.21269, "X_coordina": 3515700.55, "Y_coordina": 5405704.91, "LOD": "LOD2", "Year_of_co": 1947, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 90.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.6, "Total_wall": 51.9, "Total_wa00": 0.0, "Total_outw": 116.1, "Total_shar": 225.8, "Total_roof": 51.3, "Gross_volu": 323.3, "Is_Gross_v": "false", "Heated_vol": 281.7, "Ridge_mean": 9.3, "Eaves_mean": 6.24, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.478, "Heated_are": 90.1, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 45.9, "Total_Year": 5565.0, "January_He": 1038.0, "February_H": 715.0, "March_Heat": 412.0, "April_Heat": 69.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 209.0, "November_H": 665.0, "December_H": 1018.0, "PV_potenti": 1.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212642140651235, 48.788661237688061, 0.0 ], [ 9.212583203220911, 48.788658738713139, 0.0 ], [ 9.212587101281041, 48.788615028622758, 0.0 ], [ 9.212646174369054, 48.78861743742155, 0.0 ], [ 9.21270266139906, 48.788619761042895, 0.0 ], [ 9.212699172465129, 48.788663650228813, 0.0 ], [ 9.212642140651235, 48.788661237688061, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002bde8", "Latitude": 48.78831, "Longitude": 9.21105, "X_coordina": 3515580.69, "Y_coordina": 5405670.27, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 139.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 56.3, "Total_wall": 142.4, "Total_wa00": 0.0, "Total_outw": 236.6, "Total_shar": 96.7, "Total_roof": 90.2, "Gross_volu": 457.8, "Is_Gross_v": "false", "Heated_vol": 435.8, "Ridge_mean": 10.6, "Eaves_mean": 5.65, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.649, "Heated_are": 139.5, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 56.0, "Total_Year": 10016.0, "January_He": 1937.0, "February_H": 1329.0, "March_Heat": 805.0, "April_Heat": 185.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 23.0, "October_He": 378.0, "November_H": 1207.0, "December_H": 1932.0, "PV_potenti": 3.19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21105913005475, 48.788333320671889, 0.0 ], [ 9.211058317345568, 48.788366683837651, 0.0 ], [ 9.210961009193472, 48.788365603204454, 0.0 ], [ 9.210961823474825, 48.788332599731113, 0.0 ], [ 9.210962618531603, 48.78829501018631, 0.0 ], [ 9.211060061126656, 48.788295730877152, 0.0 ], [ 9.21105913005475, 48.788333320671889, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002bdc0", "Latitude": 48.78824, "Longitude": 9.19539, "X_coordina": 3514429.79, "Y_coordina": 5405659.53, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 846.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 205.8, "Total_wall": 408.8, "Total_wa00": 0.0, "Total_outw": 686.8, "Total_shar": 452.8, "Total_roof": 238.2, "Gross_volu": 2850.0, "Is_Gross_v": "false", "Heated_vol": 2644.2, "Ridge_mean": 15.6, "Eaves_mean": 11.82, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 11, "Number_o00": 24, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.312, "Heated_are": 846.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 32.7, "Total_Year": 41044.0, "January_He": 6834.0, "February_H": 4832.0, "March_Heat": 3006.0, "April_Heat": 561.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 52.0, "October_He": 1394.0, "November_H": 4309.0, "December_H": 6642.0, "PV_potenti": 11.96 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195243482434892, 48.788243061589199, 0.0 ], [ 9.195225415598109, 48.788216474818178, 0.0 ], [ 9.195308326820927, 48.788189986594723, 0.0 ], [ 9.195373160658546, 48.788169284097357, 0.0 ], [ 9.195470192285432, 48.788309580179401, 0.0 ], [ 9.19539624565054, 48.788331647048786, 0.0 ], [ 9.195319444592069, 48.788354617948741, 0.0 ], [ 9.195301514809913, 48.788328300728658, 0.0 ], [ 9.195277289063577, 48.788292732046088, 0.0 ], [ 9.195265928524286, 48.788275935587308, 0.0 ], [ 9.195243482434892, 48.788243061589199, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002bd35", "Latitude": 48.78884, "Longitude": 9.21351, "X_coordina": 3515760.68, "Y_coordina": 5405730.07, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 101.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.4, "Total_wall": 59.6, "Total_wa00": 0.0, "Total_outw": 126.4, "Total_shar": 217.0, "Total_roof": 56.6, "Gross_volu": 362.6, "Is_Gross_v": "false", "Heated_vol": 316.2, "Ridge_mean": 9.3, "Eaves_mean": 6.3, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.479, "Heated_are": 101.2, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 45.1, "Total_Year": 6168.0, "January_He": 1110.0, "February_H": 788.0, "March_Heat": 505.0, "April_Heat": 111.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 14.0, "October_He": 240.0, "November_H": 697.0, "December_H": 1096.0, "PV_potenti": 1.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21340945628639, 48.788831482558443, 0.0 ], [ 9.213474465334878, 48.788821560392492, 0.0 ], [ 9.213494625312057, 48.788858032021743, 0.0 ], [ 9.213514099149355, 48.788893156064653, 0.0 ], [ 9.21351505826018, 48.788894682988435, 0.0 ], [ 9.213436993698632, 48.788906787542018, 0.0 ], [ 9.213423225744842, 48.788869314897084, 0.0 ], [ 9.21340945628639, 48.788831482558443, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002bc99", "Latitude": 48.78815, "Longitude": 9.21165, "X_coordina": 3515624.3, "Y_coordina": 5405652.26, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 183.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 55.4, "Total_wall": 191.5, "Total_wa00": 0.0, "Total_outw": 290.6, "Total_shar": 138.0, "Total_roof": 90.7, "Gross_volu": 605.8, "Is_Gross_v": "false", "Heated_vol": 572.5, "Ridge_mean": 13.9, "Eaves_mean": 8.0, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.577, "Heated_are": 183.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 56.3, "Total_Year": 13210.0, "January_He": 2461.0, "February_H": 1770.0, "March_Heat": 1138.0, "April_Heat": 267.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 593.0, "November_H": 1627.0, "December_H": 2398.0, "PV_potenti": 3.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211614380389884, 48.788140944165839, 0.0 ], [ 9.211670201152424, 48.788146776540366, 0.0 ], [ 9.211657503161986, 48.788201563387112, 0.0 ], [ 9.21160140940907, 48.788195551660792, 0.0 ], [ 9.211536330117966, 48.788188657176214, 0.0 ], [ 9.211549165458278, 48.78813413986137, 0.0 ], [ 9.211614380389884, 48.788140944165839, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002bb3a", "Latitude": 48.79487, "Longitude": 9.20432, "X_coordina": 3515083.87, "Y_coordina": 5406398.68, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 846.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 198.1, "Total_wall": 572.9, "Total_wa00": 0.0, "Total_outw": 834.2, "Total_shar": 403.3, "Total_roof": 198.1, "Gross_volu": 2697.4, "Is_Gross_v": "false", "Heated_vol": 2644.8, "Ridge_mean": 13.8, "Eaves_mean": 13.77, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 11, "Number_o00": 18, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.363, "Heated_are": 846.3, "Mean_Uvalu": 0.37, "Specific_d": "15,8", "Specific_s": 30.4, "Total_Year": 39093.0, "January_He": 6314.0, "February_H": 4480.0, "March_Heat": 2879.0, "April_Heat": 635.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 54.0, "October_He": 1273.0, "November_H": 3890.0, "December_H": 6145.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204295465086476, 48.794825143306454, 0.0 ], [ 9.204376232002813, 48.794872389707891, 0.0 ], [ 9.204363476063344, 48.794881764394965, 0.0 ], [ 9.204410408908544, 48.794909377551697, 0.0 ], [ 9.204316098092246, 48.794979145745963, 0.0 ], [ 9.204244608152273, 48.794937278263184, 0.0 ], [ 9.204218961175837, 48.7949562976168, 0.0 ], [ 9.204188127914454, 48.794938277657387, 0.0 ], [ 9.204213910269166, 48.794919078223415, 0.0 ], [ 9.204141466300909, 48.794876852673816, 0.0 ], [ 9.204235777168471, 48.794807084621148, 0.0 ], [ 9.204282709143888, 48.794834517984654, 0.0 ], [ 9.204295465086476, 48.794825143306454, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ba3b", "Latitude": 48.79521, "Longitude": 9.20648, "X_coordina": 3515242.82, "Y_coordina": 5406436.2, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3220, "PrimaryUsa": "health care", "PrimaryU00": 77.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 86.4, "Total_wall": 89.5, "Total_wa00": 0.0, "Total_outw": 289.5, "Total_shar": 0.0, "Total_roof": 86.4, "Gross_volu": 287.1, "Is_Gross_v": "false", "Heated_vol": 206.8, "Ridge_mean": 3.3, "Eaves_mean": 3.33, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 1.034, "Heated_are": 77.9, "Mean_Uvalu": 0.4, "Specific_d": "155,5", "Specific_s": 151.9, "Total_Year": 23952.0, "January_He": 2425.0, "February_H": 1899.0, "March_Heat": 1501.0, "April_Heat": 731.0, "May_Heatin": 179.0, "June_Heati": 12, "July_Heati": 1, "August_Hea": 2, "September_": 244.0, "October_He": 850.0, "November_H": 1657.0, "December_H": 2334.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206442449754061, 48.795167070553362, 0.0 ], [ 9.206529166299884, 48.795237325205846, 0.0 ], [ 9.206439535951294, 48.795286224477195, 0.0 ], [ 9.206352273913549, 48.795215700964683, 0.0 ], [ 9.206442449754061, 48.795167070553362, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ba3c", "Latitude": 48.79536, "Longitude": 9.20674, "X_coordina": 3515261.46, "Y_coordina": 5406453.46, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2081, "PrimaryUsa": "restaurant", "PrimaryU00": 106.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 117.4, "Total_wall": 111.5, "Total_wa00": 0.0, "Total_outw": 375.3, "Total_shar": 56.3, "Total_roof": 117.4, "Gross_volu": 364.6, "Is_Gross_v": "false", "Heated_vol": 282.4, "Ridge_mean": 3.1, "Eaves_mean": 3.1, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 1.039, "Heated_are": 106.4, "Mean_Uvalu": 0.39, "Specific_d": "334,5", "Specific_s": 195.9, "Total_Year": 56416.0, "January_He": 4508.0, "February_H": 3537.0, "March_Heat": 2724.0, "April_Heat": 1207.0, "May_Heatin": 147.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 217.0, "October_He": 1289.0, "November_H": 2926.0, "December_H": 4281.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206784911756365, 48.795303409690874, 0.0 ], [ 9.206829838355919, 48.795339208505609, 0.0 ], [ 9.20661296762299, 48.795459375966651, 0.0 ], [ 9.206560403939434, 48.795419903901539, 0.0 ], [ 9.206687104415817, 48.79534971605392, 0.0 ], [ 9.206705844676529, 48.795339341210052, 0.0 ], [ 9.206711307051547, 48.795343737659003, 0.0 ], [ 9.206784911756365, 48.795303409690874, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002afc9", "Latitude": 48.79174, "Longitude": 9.20148, "X_coordina": 3514875.86, "Y_coordina": 5406050.34, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 957.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 177.5, "Total_wall": 662.8, "Total_wa00": 0.0, "Total_outw": 874.0, "Total_shar": 278.8, "Total_roof": 177.5, "Gross_volu": 2660.8, "Is_Gross_v": "false", "Heated_vol": 2660.8, "Ridge_mean": 15.0, "Eaves_mean": 15.0, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 12, "Number_o00": 23, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.383, "Heated_are": 957.9, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 28.7, "Total_Year": 42645.0, "January_He": 6858.0, "February_H": 4835.0, "March_Heat": 2998.0, "April_Heat": 531.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 1317.0, "November_H": 4232.0, "December_H": 6649.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201479457405116, 48.791706609122244, 0.0 ], [ 9.201469822957288, 48.791713729942792, 0.0 ], [ 9.201491104148412, 48.791726192089662, 0.0 ], [ 9.201500873972513, 48.791718891183272, 0.0 ], [ 9.201535524383173, 48.791739243204773, 0.0 ], [ 9.201529604175096, 48.79175624912606, 0.0 ], [ 9.201557294934586, 48.791771937293092, 0.0 ], [ 9.201524592018787, 48.79179609405243, 0.0 ], [ 9.201451725215081, 48.791850535399867, 0.0 ], [ 9.201412710647183, 48.791827942896646, 0.0 ], [ 9.201381961277994, 48.791830154840198, 0.0 ], [ 9.201380388274114, 48.791811183711431, 0.0 ], [ 9.201375069322667, 48.791808405381168, 0.0 ], [ 9.20137683318986, 48.791807053442696, 0.0 ], [ 9.201357869964477, 48.791795666305077, 0.0 ], [ 9.201349999709963, 48.791801525100297, 0.0 ], [ 9.201307437703882, 48.791776690673807, 0.0 ], [ 9.201436075594129, 48.791680966864767, 0.0 ], [ 9.201479457405116, 48.791706609122244, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002af5f", "Latitude": 48.78974, "Longitude": 9.21329, "X_coordina": 3515744.72, "Y_coordina": 5405830.18, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 608.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 160.4, "Total_wall": 397.3, "Total_wa00": 0.0, "Total_outw": 656.3, "Total_shar": 194.8, "Total_roof": 219.2, "Gross_volu": 2062.5, "Is_Gross_v": "false", "Heated_vol": 1902.2, "Ridge_mean": 15.4, "Eaves_mean": 10.67, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 8, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.396, "Heated_are": 608.7, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 36.3, "Total_Year": 31719.0, "January_He": 5636.0, "February_H": 3820.0, "March_Heat": 2206.0, "April_Heat": 371.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 1014.0, "November_H": 3435.0, "December_H": 5550.0, "PV_potenti": 9.97 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213286299697703, 48.789828154582167, 0.0 ], [ 9.2132190058486, 48.789845184837318, 0.0 ], [ 9.213144297998083, 48.789718350961465, 0.0 ], [ 9.213279157164699, 48.789684200071846, 0.0 ], [ 9.213353457409362, 48.789811124539852, 0.0 ], [ 9.213286299697703, 48.789828154582167, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ad43", "Latitude": 48.79187, "Longitude": 9.19943, "X_coordina": 3514725.65, "Y_coordina": 5406064.05, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 3149.0, "SecondaryU": "retail", "Secondar00": 410.8, "BuildingTy": "HH", "Footprint_": 513.5, "Total_wall": 1149.0, "Total_wa00": 0.0, "Total_outw": 1286.6, "Total_shar": 1110.5, "Total_roof": 513.5, "Gross_volu": 11125.3, "Is_Gross_v": "false", "Heated_vol": 11124.3, "Ridge_mean": 23.4, "Eaves_mean": 23.4, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 66, "Number_o00": 95, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.196, "Heated_are": 3559.8, "Mean_Uvalu": 0.38, "Specific_d": "22,4", "Specific_s": 26.1, "Total_Year": 172897.0, "January_He": 21828.0, "February_H": 16411.0, "March_Heat": 11522.0, "April_Heat": 3221.0, "May_Heatin": 80.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 283.0, "October_He": 5026.0, "November_H": 13816.0, "December_H": 20836.0, "PV_potenti": 22.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199164463919249, 48.791922399964044, 0.0 ], [ 9.199172735851226, 48.791916175533686, 0.0 ], [ 9.199172757569899, 48.791916161108354, 0.0 ], [ 9.19920287208714, 48.791893468055306, 0.0 ], [ 9.199207788460154, 48.791896343400431, 0.0 ], [ 9.199275498853366, 48.791846861790482, 0.0 ], [ 9.199284637392234, 48.791852242291284, 0.0 ], [ 9.199427805747732, 48.791745700250594, 0.0 ], [ 9.19961263949979, 48.791854186664438, 0.0 ], [ 9.199364325542872, 48.792039411615725, 0.0 ], [ 9.19923623151549, 48.791964359163238, 0.0 ], [ 9.199164463919249, 48.791922399964044, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002ad44", "Latitude": 48.79177, "Longitude": 9.19958, "X_coordina": 3514736.3, "Y_coordina": 5406052.72, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 84.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 50.9, "Total_wall": 108.9, "Total_wa00": 0.0, "Total_outw": 213.6, "Total_shar": 213.2, "Total_roof": 50.9, "Gross_volu": 315.2, "Is_Gross_v": "false", "Heated_vol": 264.2, "Ridge_mean": 6.2, "Eaves_mean": 6.18, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.735, "Heated_are": 84.6, "Mean_Uvalu": 0.45, "Specific_d": "32,9", "Specific_s": 15.7, "Total_Year": 4105.0, "January_He": 451.0, "February_H": 206.0, "March_Heat": 65.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 10.0, "November_H": 141.0, "December_H": 448.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199427805747732, 48.791745700250594, 0.0 ], [ 9.199453031692498, 48.791726856234412, 0.0 ], [ 9.199638298954165, 48.791835527099231, 0.0 ], [ 9.19961263949979, 48.791854186664438, 0.0 ], [ 9.199427805747732, 48.791745700250594, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002aaf7", "Latitude": 48.78888, "Longitude": 9.20095, "X_coordina": 3514837.64, "Y_coordina": 5405731.9, "LOD": "LOD2", "Year_of_co": 1940, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 736.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 130.7, "Total_wall": 644.0, "Total_wa00": 0.0, "Total_outw": 871.3, "Total_shar": 173.9, "Total_roof": 216.8, "Gross_volu": 2403.9, "Is_Gross_v": "false", "Heated_vol": 2302.9, "Ridge_mean": 21.1, "Eaves_mean": 15.64, "Storey_num": 7, "Average_St": 2.9, "Number_of_": 12, "Number_o00": 18, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.426, "Heated_are": 736.9, "Mean_Uvalu": 0.62, "Specific_d": "15,8", "Specific_s": 51.5, "Total_Year": 49656.0, "January_He": 8933.0, "February_H": 6512.0, "March_Heat": 4357.0, "April_Heat": 1123.0, "May_Heatin": 54.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 174.0, "October_He": 2264.0, "November_H": 5851.0, "December_H": 8714.0, "PV_potenti": 7.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200982439997093, 48.788847366852607, 0.0 ], [ 9.201018625474244, 48.788911868870244, 0.0 ], [ 9.20084174493846, 48.788955250924168, 0.0 ], [ 9.200827197703562, 48.788958873240446, 0.0 ], [ 9.200782387139785, 48.788881437196942, 0.0 ], [ 9.200846068940947, 48.788865670439797, 0.0 ], [ 9.20090855390583, 48.788850103567505, 0.0 ], [ 9.200915861533018, 48.788863633319089, 0.0 ], [ 9.200982439997093, 48.788847366852607, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002a8b9", "Latitude": 48.78869, "Longitude": 9.20267, "X_coordina": 3514964.1, "Y_coordina": 5405710.96, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 84.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.1, "Total_wall": 90.0, "Total_wa00": 0.0, "Total_outw": 185.1, "Total_shar": 50.5, "Total_roof": 46.1, "Gross_volu": 191.8, "Is_Gross_v": "false", "Heated_vol": 191.8, "Ridge_mean": 4.2, "Eaves_mean": 4.18, "Storey_num": 2, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.95, "Heated_are": 84.1, "Mean_Uvalu": 0.43, "Specific_d": "73,0", "Specific_s": 52.0, "Total_Year": 10504.0, "January_He": 1091.0, "February_H": 742.0, "March_Heat": 445.0, "April_Heat": 109.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 19.0, "October_He": 216.0, "November_H": 657.0, "December_H": 1080.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202680650820556, 48.788731176593437, 0.0 ], [ 9.202609298949334, 48.788754862148473, 0.0 ], [ 9.202561280503705, 48.788692539610615, 0.0 ], [ 9.202635626263561, 48.788668848816926, 0.0 ], [ 9.202680650820556, 48.788731176593437, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002a855", "Latitude": 48.78874, "Longitude": 9.21229, "X_coordina": 3515671.27, "Y_coordina": 5405717.95, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 87.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.1, "Total_wall": 50.2, "Total_wa00": 0.0, "Total_outw": 112.1, "Total_shar": 218.0, "Total_roof": 52.2, "Gross_volu": 315.8, "Is_Gross_v": "false", "Heated_vol": 274.6, "Ridge_mean": 9.4, "Eaves_mean": 6.03, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.486, "Heated_are": 87.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.5, "Total_Year": 5482.0, "January_He": 1025.0, "February_H": 706.0, "March_Heat": 409.0, "April_Heat": 70.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 209.0, "November_H": 656.0, "December_H": 1004.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212247386064023, 48.78873570330682, 0.0 ], [ 9.212304690880506, 48.788738295386899, 0.0 ], [ 9.212300383160951, 48.788781736451028, 0.0 ], [ 9.212243350852557, 48.788779233790237, 0.0 ], [ 9.212185365547374, 48.788776642933456, 0.0 ], [ 9.212189400429633, 48.788733022529009, 0.0 ], [ 9.212247386064023, 48.78873570330682, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002a31d", "Latitude": 48.7889, "Longitude": 9.20528, "X_coordina": 3515156.01, "Y_coordina": 5405734.51, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 855.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 170.4, "Total_wall": 629.9, "Total_wa00": 0.0, "Total_outw": 803.2, "Total_shar": 190.2, "Total_roof": 226.4, "Gross_volu": 2844.8, "Is_Gross_v": "false", "Heated_vol": 2674.4, "Ridge_mean": 18.9, "Eaves_mean": 14.81, "Storey_num": 6, "Average_St": 3.0, "Number_of_": 14, "Number_o00": 21, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.377, "Heated_are": 855.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 35.0, "Total_Year": 43548.0, "January_He": 7553.0, "February_H": 5188.0, "March_Heat": 3149.0, "April_Heat": 562.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 55.0, "October_He": 1407.0, "November_H": 4649.0, "December_H": 7415.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205195160169072, 48.788878622578231, 0.0 ], [ 9.205201361004528, 48.788877424536992, 0.0 ], [ 9.20520950033303, 48.788871025454327, 0.0 ], [ 9.205207655638292, 48.788852504470292, 0.0 ], [ 9.205313654161289, 48.788848628667338, 0.0 ], [ 9.205324816503719, 48.788982774845323, 0.0 ], [ 9.205148469607446, 48.788989293863487, 0.0 ], [ 9.205142280158524, 48.788906485212145, 0.0 ], [ 9.205147315321415, 48.788906440272996, 0.0 ], [ 9.205179295387998, 48.788906149496761, 0.0 ], [ 9.205178578645935, 48.788897248332823, 0.0 ], [ 9.205179221214147, 48.788891294242589, 0.0 ], [ 9.205181368647802, 48.78888727082947, 0.0 ], [ 9.20518487877141, 48.788883685614202, 0.0 ], [ 9.205189561939562, 48.788880754751347, 0.0 ], [ 9.205195160169072, 48.788878622578231, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002a09d", "Latitude": 48.78912, "Longitude": 9.19973, "X_coordina": 3514748.0, "Y_coordina": 5405758.0, "LOD": "LOD2", "Year_of_co": 1936, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 702.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 150.2, "Total_wall": 443.7, "Total_wa00": 0.0, "Total_outw": 646.6, "Total_shar": 304.2, "Total_roof": 202.4, "Gross_volu": 2329.1, "Is_Gross_v": "false", "Heated_vol": 2195.2, "Ridge_mean": 18.3, "Eaves_mean": 12.28, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 11, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.355, "Heated_are": 702.4, "Mean_Uvalu": 0.58, "Specific_d": "15,8", "Specific_s": 43.7, "Total_Year": 41821.0, "January_He": 7132.0, "February_H": 5264.0, "March_Heat": 3655.0, "April_Heat": 1056.0, "May_Heatin": 50.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 135.0, "October_He": 1771.0, "November_H": 4661.0, "December_H": 6970.0, "PV_potenti": 9.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199591630890369, 48.789095996766321, 0.0 ], [ 9.199604013654168, 48.789095615608979, 0.0 ], [ 9.199602467444826, 48.78908320882644, 0.0 ], [ 9.199651996702233, 48.789081234569373, 0.0 ], [ 9.199654357679933, 48.789093190320415, 0.0 ], [ 9.199712732080764, 48.789091020854187, 0.0 ], [ 9.199762398145259, 48.789089226159689, 0.0 ], [ 9.199767235094811, 48.789142092870264, 0.0 ], [ 9.19977179130699, 48.789192801899787, 0.0 ], [ 9.199599932126725, 48.789198855023699, 0.0 ], [ 9.199591630890369, 48.789095996766321, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029ed7", "Latitude": 48.79105, "Longitude": 9.21114, "X_coordina": 3515585.94, "Y_coordina": 5405975.23, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 508.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 127.2, "Total_wall": 265.6, "Total_wa00": 0.0, "Total_outw": 396.2, "Total_shar": 333.6, "Total_roof": 183.6, "Gross_volu": 1644.5, "Is_Gross_v": "false", "Heated_vol": 1588.2, "Ridge_mean": 15.4, "Eaves_mean": 10.35, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.358, "Heated_are": 508.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 38.6, "Total_Year": 27683.0, "January_He": 4775.0, "February_H": 3435.0, "March_Heat": 2149.0, "April_Heat": 413.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 1055.0, "November_H": 3094.0, "December_H": 4656.0, "PV_potenti": 8.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211063505650465, 48.791128948516025, 0.0 ], [ 9.21099892517079, 48.791112071295856, 0.0 ], [ 9.211064743482416, 48.791002243876136, 0.0 ], [ 9.211128641481224, 48.791018672692864, 0.0 ], [ 9.211187907003474, 48.791033851038854, 0.0 ], [ 9.211120593001509, 48.791143951041185, 0.0 ], [ 9.211063505650465, 48.791128948516025, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029d75", "Latitude": 48.79208, "Longitude": 9.19785, "X_coordina": 3514609.37, "Y_coordina": 5406086.9, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 149.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.1, "Total_wall": 66.5, "Total_wa00": 0.0, "Total_outw": 141.7, "Total_shar": 279.7, "Total_roof": 89.9, "Gross_volu": 522.5, "Is_Gross_v": "false", "Heated_vol": 466.4, "Ridge_mean": 12.3, "Eaves_mean": 6.0, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.43, "Heated_are": 149.2, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 40.8, "Total_Year": 8451.0, "January_He": 1488.0, "February_H": 1044.0, "March_Heat": 665.0, "April_Heat": 152.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 18.0, "October_He": 321.0, "November_H": 936.0, "December_H": 1458.0, "PV_potenti": 3.33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197737689919782, 48.792115772843026, 0.0 ], [ 9.197735653747573, 48.792117125193315, 0.0 ], [ 9.197733197973095, 48.79211560070901, 0.0 ], [ 9.197776486054321, 48.792083153877122, 0.0 ], [ 9.197820724291192, 48.792050075931414, 0.0 ], [ 9.197823316516637, 48.792051690103051, 0.0 ], [ 9.197822502403241, 48.792052320966754, 0.0 ], [ 9.197880334202461, 48.792084324328464, 0.0 ], [ 9.197836915745835, 48.792118210200847, 0.0 ], [ 9.197794311699633, 48.792151555116277, 0.0 ], [ 9.197790765368202, 48.792149582888406, 0.0 ], [ 9.19779320806769, 48.79214778022093, 0.0 ], [ 9.197737689919782, 48.792115772843026, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029bb1", "Latitude": 48.7921, "Longitude": 9.2028, "X_coordina": 3514973.18, "Y_coordina": 5406089.74, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 834.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 187.2, "Total_wall": 578.8, "Total_wa00": 0.0, "Total_outw": 821.4, "Total_shar": 209.1, "Total_roof": 219.4, "Gross_volu": 2640.8, "Is_Gross_v": "false", "Heated_vol": 2608.2, "Ridge_mean": 15.8, "Eaves_mean": 12.42, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 10, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.376, "Heated_are": 834.6, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 40.0, "Total_Year": 46604.0, "January_He": 8176.0, "February_H": 5818.0, "March_Heat": 3602.0, "April_Heat": 683.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 78.0, "October_He": 1764.0, "November_H": 5285.0, "December_H": 7961.0, "PV_potenti": 11.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202851895998178, 48.792050765283818, 0.0 ], [ 9.202811267920927, 48.792202088330512, 0.0 ], [ 9.202741279663348, 48.792193848675147, 0.0 ], [ 9.202664483252612, 48.792184811646635, 0.0 ], [ 9.202705247492977, 48.792033398488002, 0.0 ], [ 9.20278163538614, 48.792042436208909, 0.0 ], [ 9.202851895998178, 48.792050765283818, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029bb2", "Latitude": 48.79204, "Longitude": 9.20259, "X_coordina": 3514957.58, "Y_coordina": 5406083.46, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 27.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 34.4, "Total_wall": 43.5, "Total_wa00": 0.0, "Total_outw": 131.0, "Total_shar": 45.6, "Total_roof": 34.4, "Gross_volu": 86.1, "Is_Gross_v": "false", "Heated_vol": 85.9, "Ridge_mean": 2.5, "Eaves_mean": 2.5, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 1.306, "Heated_are": 27.5, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202543932731908, 48.792024060502101, 0.0 ], [ 9.202601638634654, 48.792057860188386, 0.0 ], [ 9.202547365217628, 48.792099140667723, 0.0 ], [ 9.202489794678133, 48.792065160869292, 0.0 ], [ 9.202543932731908, 48.792024060502101, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029a42", "Latitude": 48.78829, "Longitude": 9.19991, "X_coordina": 3514761.49, "Y_coordina": 5405666.18, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 86.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 108.1, "Total_wall": 156.3, "Total_wa00": 0.0, "Total_outw": 190.7, "Total_shar": 0.0, "Total_roof": 108.1, "Gross_volu": 328.5, "Is_Gross_v": "false", "Heated_vol": 269.0, "Ridge_mean": 3.0, "Eaves_mean": 3.05, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 1.239, "Heated_are": 86.1, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199915516559834, 48.788272455511951, 0.0 ], [ 9.199928495366965, 48.788282053911388, 0.0 ], [ 9.199959316854864, 48.788263928439648, 0.0 ], [ 9.200013766729116, 48.788303847207828, 0.0 ], [ 9.199983224841464, 48.788321786965717, 0.0 ], [ 9.199970245670645, 48.788312102246437, 0.0 ], [ 9.199939704501972, 48.788330228133475, 0.0 ], [ 9.199926465070057, 48.788320458433695, 0.0 ], [ 9.199895924844952, 48.788338484492208, 0.0 ], [ 9.199882816460057, 48.788329156984318, 0.0 ], [ 9.199852274906721, 48.788347196522089, 0.0 ], [ 9.199839166470912, 48.788337512012433, 0.0 ], [ 9.199808474181907, 48.788355638126866, 0.0 ], [ 9.199795366091452, 48.788346039039105, 0.0 ], [ 9.199764693855567, 48.788364079679582, 0.0 ], [ 9.199710373280164, 48.788323788286, 0.0 ], [ 9.19974091526643, 48.78830584860026, 0.0 ], [ 9.19975387227848, 48.788315447956343, 0.0 ], [ 9.199784564901869, 48.78829740728321, 0.0 ], [ 9.199797544033252, 48.788307092023501, 0.0 ], [ 9.19982821491895, 48.788289065764232, 0.0 ], [ 9.19984119332098, 48.788298565258131, 0.0 ], [ 9.19987173524528, 48.788280625537759, 0.0 ], [ 9.199884975052553, 48.788290495058504, 0.0 ], [ 9.199915516559834, 48.788272455511951, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029a43", "Latitude": 48.78825, "Longitude": 9.20012, "X_coordina": 3514777.17, "Y_coordina": 5405661.64, "LOD": "LOD2", "Year_of_co": 1933, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 29.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 36.0, "Total_wall": 68.6, "Total_wa00": 0.0, "Total_outw": 82.2, "Total_shar": 0.0, "Total_roof": 36.0, "Gross_volu": 92.4, "Is_Gross_v": "false", "Heated_vol": 92.4, "Ridge_mean": 2.5, "Eaves_mean": 2.55, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.522, "Heated_are": 29.6, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200085236550205, 48.788239512165475, 0.0 ], [ 9.200139686898131, 48.788279531588003, 0.0 ], [ 9.200109274357173, 48.78829747205382, 0.0 ], [ 9.200096036258358, 48.788287701471901, 0.0 ], [ 9.200065754796361, 48.788306098510596, 0.0 ], [ 9.200011023797988, 48.788265994113296, 0.0 ], [ 9.200041435618727, 48.788247868431839, 0.0 ], [ 9.200054673692902, 48.788257638120896, 0.0 ], [ 9.200085236550205, 48.788239512165475, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000298ef", "Latitude": 48.79024, "Longitude": 9.21318, "X_coordina": 3515736.17, "Y_coordina": 5405885.26, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 517.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 142.7, "Total_wall": 247.1, "Total_wa00": 0.0, "Total_outw": 424.2, "Total_shar": 351.5, "Total_roof": 208.1, "Gross_volu": 1760.3, "Is_Gross_v": "false", "Heated_vol": 1617.6, "Ridge_mean": 15.0, "Eaves_mean": 9.63, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.356, "Heated_are": 517.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 36.3, "Total_Year": 27003.0, "January_He": 4691.0, "February_H": 3261.0, "March_Heat": 1973.0, "April_Heat": 350.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 37.0, "October_He": 953.0, "November_H": 2962.0, "December_H": 4570.0, "PV_potenti": 10.49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213161377496554, 48.790184213682267, 0.0 ], [ 9.213234958475871, 48.790301877413604, 0.0 ], [ 9.213173786266019, 48.790318446687742, 0.0 ], [ 9.213107856083608, 48.790336283664836, 0.0 ], [ 9.213034278015032, 48.79021924931309, 0.0 ], [ 9.213099799030395, 48.79020123328759, 0.0 ], [ 9.213161377496554, 48.790184213682267, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000298c4", "Latitude": 48.79215, "Longitude": 9.19797, "X_coordina": 3514618.31, "Y_coordina": 5406094.66, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 162.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 58.4, "Total_wall": 61.8, "Total_wa00": 0.0, "Total_outw": 124.2, "Total_shar": 294.3, "Total_roof": 93.8, "Gross_volu": 566.3, "Is_Gross_v": "false", "Heated_vol": 507.9, "Ridge_mean": 12.6, "Eaves_mean": 6.46, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.397, "Heated_are": 162.5, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 39.7, "Total_Year": 9020.0, "January_He": 1552.0, "February_H": 1107.0, "March_Heat": 726.0, "April_Heat": 176.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 21.0, "October_He": 352.0, "November_H": 988.0, "December_H": 1516.0, "PV_potenti": 3.33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197896799713714, 48.792152907736138, 0.0 ], [ 9.197939951623145, 48.792120461077069, 0.0 ], [ 9.197985511024742, 48.792146460599021, 0.0 ], [ 9.19800201606783, 48.792155874198414, 0.0 ], [ 9.198004062849826, 48.792157219533024, 0.0 ], [ 9.197959821102012, 48.792189398318612, 0.0 ], [ 9.19791761546926, 48.79222022473369, 0.0 ], [ 9.19791489031684, 48.792219420105013, 0.0 ], [ 9.197859231671229, 48.792186333944407, 0.0 ], [ 9.197858011028924, 48.792187415124808, 0.0 ], [ 9.197853376612684, 48.792185624615577, 0.0 ], [ 9.197896799713714, 48.792152907736138, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002972c", "Latitude": 48.79354, "Longitude": 9.19947, "X_coordina": 3514727.93, "Y_coordina": 5406249.09, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 217.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 135.7, "Total_wall": 126.6, "Total_wa00": 0.0, "Total_outw": 255.7, "Total_shar": 216.2, "Total_roof": 135.7, "Gross_volu": 700.9, "Is_Gross_v": "false", "Heated_vol": 679.2, "Ridge_mean": 5.2, "Eaves_mean": 5.16, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.574, "Heated_are": 217.3, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 10.7, "Total_Year": 9457.0, "January_He": 786.0, "February_H": 403.0, "March_Heat": 120.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 12.0, "November_H": 245.0, "December_H": 742.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19931343237676, 48.793555610443278, 0.0 ], [ 9.199411681601378, 48.793482602257505, 0.0 ], [ 9.199538688413675, 48.793557018821318, 0.0 ], [ 9.199440848604741, 48.793630296176062, 0.0 ], [ 9.19931343237676, 48.793555610443278, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029514", "Latitude": 48.78869, "Longitude": 9.20318, "X_coordina": 3515002.21, "Y_coordina": 5405710.82, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 844.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 221.1, "Total_wall": 670.3, "Total_wa00": 0.0, "Total_outw": 1150.1, "Total_shar": 0.0, "Total_roof": 269.2, "Gross_volu": 2859.3, "Is_Gross_v": "false", "Heated_vol": 2638.2, "Ridge_mean": 14.7, "Eaves_mean": 11.5, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 11, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.428, "Heated_are": 844.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.2, "Total_Year": 47296.0, "January_He": 8364.0, "February_H": 5943.0, "March_Heat": 3610.0, "April_Heat": 693.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 76.0, "October_He": 1710.0, "November_H": 5269.0, "December_H": 8238.0, "PV_potenti": 12.65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203303161318958, 48.788706159585267, 0.0 ], [ 9.203038140915673, 48.788794122865141, 0.0 ], [ 9.202976024221188, 48.788711862306712, 0.0 ], [ 9.203241457651259, 48.788625157370547, 0.0 ], [ 9.203303161318958, 48.788706159585267, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029506", "Latitude": 48.78961, "Longitude": 9.19994, "X_coordina": 3514763.74, "Y_coordina": 5405812.66, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1020, "PrimaryUsa": "residential", "PrimaryU00": 595.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 143.1, "Total_wall": 601.4, "Total_wa00": 0.0, "Total_outw": 857.7, "Total_shar": 54.0, "Total_roof": 143.1, "Gross_volu": 1968.6, "Is_Gross_v": "false", "Heated_vol": 1862.2, "Ridge_mean": 13.7, "Eaves_mean": 13.74, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 7, "Number_o00": 14, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.468, "Heated_are": 595.9, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 42.2, "Total_Year": 34585.0, "January_He": 6140.0, "February_H": 4323.0, "March_Heat": 2762.0, "April_Heat": 652.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 75.0, "October_He": 1291.0, "November_H": 3839.0, "December_H": 6035.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199823950812549, 48.78957902334929, 0.0 ], [ 9.199849830301897, 48.78958455370465, 0.0 ], [ 9.199956919166, 48.78958059101344, 0.0 ], [ 9.199956358007675, 48.789576365577027, 0.0 ], [ 9.200001260631639, 48.789574399203573, 0.0 ], [ 9.200001547109437, 48.789577995651413, 0.0 ], [ 9.200005289193966, 48.789629245623665, 0.0 ], [ 9.200004881991802, 48.789629516101797, 0.0 ], [ 9.19995589697235, 48.78966584039329, 0.0 ], [ 9.199947137484916, 48.789687617121977, 0.0 ], [ 9.199790668273035, 48.789662710077152, 0.0 ], [ 9.199823950812549, 48.78957902334929, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029423", "Latitude": 48.78763, "Longitude": 9.19498, "X_coordina": 3514399.97, "Y_coordina": 5405591.54, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1034.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 184.5, "Total_wall": 858.3, "Total_wa00": 0.0, "Total_outw": 1162.4, "Total_shar": 93.5, "Total_roof": 214.6, "Gross_volu": 3416.0, "Is_Gross_v": "false", "Heated_vol": 3231.5, "Ridge_mean": 20.0, "Eaves_mean": 17.32, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 17, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.383, "Heated_are": 1034.1, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 34.7, "Total_Year": 52227.0, "January_He": 9032.0, "February_H": 6263.0, "March_Heat": 3707.0, "April_Heat": 633.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 1705.0, "November_H": 5572.0, "December_H": 8861.0, "PV_potenti": 10.13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195049118160203, 48.787708704893561, 0.0 ], [ 9.194959949360895, 48.787735653145603, 0.0 ], [ 9.194928278156926, 48.787745238669977, 0.0 ], [ 9.194925950756405, 48.787741645663175, 0.0 ], [ 9.194868466477288, 48.787657034864168, 0.0 ], [ 9.194826173566033, 48.787594519555931, 0.0 ], [ 9.194950412642934, 48.787557260741877, 0.0 ], [ 9.195053059783426, 48.78770743928586, 0.0 ], [ 9.195049118160203, 48.787708704893561, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029425", "Latitude": 48.78768, "Longitude": 9.19488, "X_coordina": 3514392.63, "Y_coordina": 5405596.65, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 149.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 93.4, "Total_wall": 109.6, "Total_wa00": 0.0, "Total_outw": 230.2, "Total_shar": 189.0, "Total_roof": 93.4, "Gross_volu": 513.9, "Is_Gross_v": "false", "Heated_vol": 466.9, "Ridge_mean": 5.5, "Eaves_mean": 5.5, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.598, "Heated_are": 149.4, "Mean_Uvalu": 0.4, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194760669885127, 48.787652990819545, 0.0 ], [ 9.194868466477288, 48.787657034864168, 0.0 ], [ 9.194925950756405, 48.787741645663175, 0.0 ], [ 9.19475417911509, 48.787734023017791, 0.0 ], [ 9.194760669885127, 48.787652990819545, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00029395", "Latitude": 48.79008, "Longitude": 9.20026, "X_coordina": 3514787.22, "Y_coordina": 5405865.34, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 663.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 125.9, "Total_wall": 569.8, "Total_wa00": 0.0, "Total_outw": 832.5, "Total_shar": 212.9, "Total_roof": 160.3, "Gross_volu": 2199.1, "Is_Gross_v": "false", "Heated_vol": 2073.2, "Ridge_mean": 19.7, "Eaves_mean": 14.86, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 11, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.406, "Heated_are": 663.4, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 39.9, "Total_Year": 37012.0, "January_He": 6517.0, "February_H": 4579.0, "March_Heat": 2882.0, "April_Heat": 644.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1315.0, "November_H": 4074.0, "December_H": 6404.0, "PV_potenti": 7.08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200212985847109, 48.790147294432103, 0.0 ], [ 9.200212224385664, 48.790161143994332, 0.0 ], [ 9.200151657332247, 48.790159810502686, 0.0 ], [ 9.20014338537224, 48.790098856661302, 0.0 ], [ 9.200141983674452, 48.790088607804037, 0.0 ], [ 9.200144814270898, 48.790047507786909, 0.0 ], [ 9.200296440363923, 48.790052010109939, 0.0 ], [ 9.200293644965997, 48.790101922584938, 0.0 ], [ 9.200290974560501, 48.790149047209653, 0.0 ], [ 9.200212985847109, 48.790147294432103, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000292e2", "Latitude": 48.78846, "Longitude": 9.21063, "X_coordina": 3515549.23, "Y_coordina": 5405686.99, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 111.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.8, "Total_wall": 128.5, "Total_wa00": 0.0, "Total_outw": 254.9, "Total_shar": 103.3, "Total_roof": 66.3, "Gross_volu": 399.2, "Is_Gross_v": "false", "Heated_vol": 349.4, "Ridge_mean": 9.7, "Eaves_mean": 6.33, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.662, "Heated_are": 111.8, "Mean_Uvalu": 0.56, "Specific_d": "15,8", "Specific_s": 48.8, "Total_Year": 7227.0, "January_He": 1493.0, "February_H": 894.0, "March_Heat": 448.0, "April_Heat": 76.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 200.0, "November_H": 826.0, "December_H": 1508.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210532221266286, 48.788502532307582, 0.0 ], [ 9.210528497899279, 48.788458296676851, 0.0 ], [ 9.210528212181154, 48.78845505994763, 0.0 ], [ 9.210580326052623, 48.788453076268453, 0.0 ], [ 9.210632984272586, 48.788451091570103, 0.0 ], [ 9.21063785401954, 48.788509083419662, 0.0 ], [ 9.210585195739155, 48.788511068120336, 0.0 ], [ 9.210533217896229, 48.788513051553004, 0.0 ], [ 9.210532221266286, 48.788502532307582, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000290c7", "Latitude": 48.78795, "Longitude": 9.21069, "X_coordina": 3515554.07, "Y_coordina": 5405629.68, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 185.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.4, "Total_wall": 110.5, "Total_wa00": 0.0, "Total_outw": 185.1, "Total_shar": 260.4, "Total_roof": 88.6, "Gross_volu": 617.2, "Is_Gross_v": "false", "Heated_vol": 579.1, "Ridge_mean": 13.7, "Eaves_mean": 8.23, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.429, "Heated_are": 185.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 44.4, "Total_Year": 11159.0, "January_He": 1993.0, "February_H": 1425.0, "March_Heat": 894.0, "April_Heat": 185.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 24.0, "October_He": 456.0, "November_H": 1297.0, "December_H": 1944.0, "PV_potenti": 3.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210715521249385, 48.787947008397907, 0.0 ], [ 9.210697110758771, 48.788002794753211, 0.0 ], [ 9.210638692571901, 48.787994089101012, 0.0 ], [ 9.21057782333577, 48.787985028206478, 0.0 ], [ 9.210596782438195, 48.787930230027094, 0.0 ], [ 9.210657649729525, 48.787938841296956, 0.0 ], [ 9.210715521249385, 48.787947008397907, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028ff1", "Latitude": 48.79003, "Longitude": 9.20506, "X_coordina": 3515139.7, "Y_coordina": 5405860.83, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 237.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 81.3, "Total_wall": 168.3, "Total_wa00": 0.0, "Total_outw": 276.2, "Total_shar": 247.6, "Total_roof": 93.0, "Gross_volu": 808.9, "Is_Gross_v": "false", "Heated_vol": 741.9, "Ridge_mean": 11.4, "Eaves_mean": 8.33, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 3, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.443, "Heated_are": 237.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.1, "Total_Year": 13761.0, "January_He": 2442.0, "February_H": 1724.0, "March_Heat": 1087.0, "April_Heat": 252.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 30.0, "October_He": 527.0, "November_H": 1529.0, "December_H": 2399.0, "PV_potenti": 3.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205057018475292, 48.790091920519785, 0.0 ], [ 9.205030696002556, 48.7901114808149, 0.0 ], [ 9.20497940281034, 48.790081537635238, 0.0 ], [ 9.204978993799921, 48.790081358515998, 0.0 ], [ 9.204926200355532, 48.790050608670271, 0.0 ], [ 9.204995261933224, 48.789999049438279, 0.0 ], [ 9.20504014294969, 48.79002513731232, 0.0 ], [ 9.205053511889028, 48.790032936863824, 0.0 ], [ 9.205106032840751, 48.790063597213035, 0.0 ], [ 9.205063021208844, 48.79009550677597, 0.0 ], [ 9.205057018475292, 48.790091920519785, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028ff2", "Latitude": 48.79005, "Longitude": 9.20515, "X_coordina": 3515146.01, "Y_coordina": 5405862.61, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 41.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 59.8, "Total_wall": 49.3, "Total_wa00": 0.0, "Total_outw": 172.8, "Total_shar": 174.0, "Total_roof": 60.0, "Gross_volu": 190.3, "Is_Gross_v": "false", "Heated_vol": 130.8, "Ridge_mean": 3.5, "Eaves_mean": 3.54, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.999, "Heated_are": 41.9, "Mean_Uvalu": 0.35, "Specific_d": "non calculated", "Specific_s": 100.0, "Total_Year": 4184.0, "January_He": 911.0, "February_H": 673.0, "March_Heat": 487.0, "April_Heat": 177.0, "May_Heatin": 22.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 60.0, "October_He": 323.0, "November_H": 636.0, "December_H": 895.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205106032840751, 48.790063597213035, 0.0 ], [ 9.205053511889028, 48.790032936863824, 0.0 ], [ 9.205076708216785, 48.790014371290276, 0.0 ], [ 9.205063337813106, 48.790006212049533, 0.0 ], [ 9.205065506863978, 48.790004139943619, 0.0 ], [ 9.205123484687824, 48.790038027818362, 0.0 ], [ 9.205173685514225, 48.790067073644082, 0.0 ], [ 9.205077893646463, 48.790138283938163, 0.0 ], [ 9.205030696002556, 48.7901114808149, 0.0 ], [ 9.205057018475292, 48.790091920519785, 0.0 ], [ 9.205063021208844, 48.79009550677597, 0.0 ], [ 9.205106032840751, 48.790063597213035, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028eca", "Latitude": 48.78854, "Longitude": 9.20188, "X_coordina": 3514906.45, "Y_coordina": 5405693.86, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 3087.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 685.4, "Total_wall": 891.5, "Total_wa00": 0.0, "Total_outw": 1241.5, "Total_shar": 1065.9, "Total_roof": 685.4, "Gross_volu": 10232.6, "Is_Gross_v": "false", "Heated_vol": 9648.6, "Ridge_mean": 16.6, "Eaves_mean": 16.57, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.226, "Heated_are": 3087.5, "Mean_Uvalu": 0.32, "Specific_d": "24,8", "Specific_s": 32.8, "Total_Year": 177990.0, "January_He": 21451.0, "February_H": 16686.0, "March_Heat": 13025.0, "April_Heat": 5823.0, "May_Heatin": 846.0, "June_Heati": 32, "July_Heati": 4, "August_Hea": 9, "September_": 1424.0, "October_He": 6943.0, "November_H": 14446.0, "December_H": 20607.0, "PV_potenti": 31.49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201679752413673, 48.78840237451719, 0.0 ], [ 9.201801398599889, 48.788398024920561, 0.0 ], [ 9.201970260835283, 48.788391973768874, 0.0 ], [ 9.201988968282539, 48.788611174819899, 0.0 ], [ 9.201990680027055, 48.788630775173118, 0.0 ], [ 9.201991387178833, 48.788637428282811, 0.0 ], [ 9.201869873634649, 48.788641058458033, 0.0 ], [ 9.201875124986033, 48.788694913518128, 0.0 ], [ 9.201877274534958, 48.788721886844399, 0.0 ], [ 9.20172868447696, 48.78872691318891, 0.0 ], [ 9.20172410579314, 48.788671078623828, 0.0 ], [ 9.201702879538264, 48.788672015041001, 0.0 ], [ 9.201701021003416, 48.788649717231294, 0.0 ], [ 9.201698739427746, 48.788623733292802, 0.0 ], [ 9.201693453675343, 48.788561245613799, 0.0 ], [ 9.201684461705673, 48.788456860003095, 0.0 ], [ 9.201679752413673, 48.78840237451719, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028ecb", "Latitude": 48.78835, "Longitude": 9.20139, "X_coordina": 3514870.54, "Y_coordina": 5405672.72, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 47.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 56.6, "Total_wall": 78.8, "Total_wa00": 0.0, "Total_outw": 242.0, "Total_shar": 0.0, "Total_roof": 56.6, "Gross_volu": 168.9, "Is_Gross_v": "false", "Heated_vol": 147.4, "Ridge_mean": 3.0, "Eaves_mean": 2.98, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 1.205, "Heated_are": 47.2, "Mean_Uvalu": 0.35, "Specific_d": "32,9", "Specific_s": 29.7, "Total_Year": 2951.0, "January_He": 415.0, "February_H": 252.0, "March_Heat": 112.0, "April_Heat": 13.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 21.0, "November_H": 185.0, "December_H": 402.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20137080468588, 48.788395991055637, 0.0 ], [ 9.201281406313299, 48.788399024905544, 0.0 ], [ 9.201277247928624, 48.78834606714188, 0.0 ], [ 9.201411276938918, 48.788341426542033, 0.0 ], [ 9.201415333615451, 48.788368936084879, 0.0 ], [ 9.201411970642061, 48.788378743645083, 0.0 ], [ 9.201403702738649, 48.788387121005293, 0.0 ], [ 9.201391478561801, 48.788393077345219, 0.0 ], [ 9.201376792202408, 48.788395890661683, 0.0 ], [ 9.20137080468588, 48.788395991055637, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028ecc", "Latitude": 48.78843, "Longitude": 9.202, "X_coordina": 3514914.99, "Y_coordina": 5405681.53, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 989.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 365.7, "Total_wall": 528.9, "Total_wa00": 0.0, "Total_outw": 881.3, "Total_shar": 533.1, "Total_roof": 365.7, "Gross_volu": 2687.0, "Is_Gross_v": "false", "Heated_vol": 2687.0, "Ridge_mean": 7.3, "Eaves_mean": 7.35, "Storey_num": 3, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.469, "Heated_are": 989.9, "Mean_Uvalu": 0.41, "Specific_d": "24,8", "Specific_s": 40.0, "Total_Year": 64170.0, "January_He": 9056.0, "February_H": 6584.0, "March_Heat": 4608.0, "April_Heat": 1477.0, "May_Heatin": 134.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 2, "September_": 351.0, "October_He": 2566.0, "November_H": 5974.0, "December_H": 8822.0, "PV_potenti": 17.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201970260835283, 48.788391973768874, 0.0 ], [ 9.201801398599889, 48.788398024920561, 0.0 ], [ 9.201792396341023, 48.788291121471005, 0.0 ], [ 9.201939485615373, 48.788285468210056, 0.0 ], [ 9.201944468796196, 48.788340312900793, 0.0 ], [ 9.202046515258612, 48.788335278025372, 0.0 ], [ 9.202058762904285, 48.788470771481364, 0.0 ], [ 9.202099717897708, 48.788468811216404, 0.0 ], [ 9.202110747422592, 48.788605925427262, 0.0 ], [ 9.201988968282539, 48.788611174819899, 0.0 ], [ 9.201970260835283, 48.788391973768874, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028ecd", "Latitude": 48.78883, "Longitude": 9.202, "X_coordina": 3514915.16, "Y_coordina": 5405726.56, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3210, "PrimaryUsa": "sport location", "PrimaryU00": 5844.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 1585.6, "Total_wall": 2296.3, "Total_wa00": 0.0, "Total_outw": 2663.8, "Total_shar": 13.8, "Total_roof": 2186.1, "Gross_volu": 15557.5, "Is_Gross_v": "false", "Heated_vol": 15557.5, "Ridge_mean": 9.6, "Eaves_mean": 9.62, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.39, "Heated_are": 5844.0, "Mean_Uvalu": 1.01, "Specific_d": "124,1", "Specific_s": 139.0, "Total_Year": 1537861.0, "January_He": 175599.0, "February_H": 137006.0, "March_Heat": 105418.0, "April_Heat": 47457.0, "May_Heatin": 7924.0, "June_Heati": 70, "July_Heati": 0, "August_Hea": 0, "September_": 10429.0, "October_He": 49457.0, "November_H": 112514.0, "December_H": 166637.0, "PV_potenti": 106.45 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201967872547062, 48.788780268280007, 0.0 ], [ 9.202139589219044, 48.788773042867014, 0.0 ], [ 9.202140250600548, 48.788802176967785, 0.0 ], [ 9.202311560861647, 48.788795401630217, 0.0 ], [ 9.202328433538471, 48.788997880036547, 0.0 ], [ 9.202159297498334, 48.789004022116544, 0.0 ], [ 9.20216059166167, 48.789021285184226, 0.0 ], [ 9.201992137414416, 48.789027785516538, 0.0 ], [ 9.201992570587851, 48.789033989488139, 0.0 ], [ 9.201992179751187, 48.789038333485657, 0.0 ], [ 9.201990549991615, 48.78904255376321, 0.0 ], [ 9.201987762349178, 48.789046497308362, 0.0 ], [ 9.20198389793619, 48.78905002909336, 0.0 ], [ 9.201979105910025, 48.789053013970978, 0.0 ], [ 9.201973549181545, 48.789055352739375, 0.0 ], [ 9.201967431560872, 48.789056964109704, 0.0 ], [ 9.20196095693044, 48.789057784777768, 0.0 ], [ 9.20160758193437, 48.789070993289066, 0.0 ], [ 9.201587114305699, 48.788819692533266, 0.0 ], [ 9.201582819834591, 48.788766824946336, 0.0 ], [ 9.201966397257419, 48.788751765071119, 0.0 ], [ 9.201967872547062, 48.788780268280007, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028b17", "Latitude": 48.78897, "Longitude": 9.19891, "X_coordina": 3514688.09, "Y_coordina": 5405741.67, "LOD": "LOD2", "Year_of_co": 1937, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 391.5, "SecondaryU": "retail", "Secondar00": 109.5, "BuildingTy": "MFH", "Footprint_": 136.9, "Total_wall": 561.8, "Total_wa00": 0.0, "Total_outw": 760.3, "Total_shar": 0.0, "Total_roof": 136.9, "Gross_volu": 1702.4, "Is_Gross_v": "false", "Heated_vol": 1565.5, "Ridge_mean": 12.4, "Eaves_mean": 12.44, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 6, "Number_o00": 10, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.52, "Heated_are": 501.0, "Mean_Uvalu": 0.45, "Specific_d": "28,3", "Specific_s": 45.5, "Total_Year": 37012.0, "January_He": 5542.0, "February_H": 3888.0, "March_Heat": 2528.0, "April_Heat": 655.0, "May_Heatin": 37.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 87.0, "October_He": 1187.0, "November_H": 3445.0, "December_H": 5448.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198753729233257, 48.788960762054039, 0.0 ], [ 9.198921366440167, 48.788954088019381, 0.0 ], [ 9.198962595553359, 48.788952488090544, 0.0 ], [ 9.198970759508589, 48.788952114290282, 0.0 ], [ 9.198972454802684, 48.788967847998798, 0.0 ], [ 9.198977869047187, 48.789029256492142, 0.0 ], [ 9.198759746170346, 48.789037006918569, 0.0 ], [ 9.198753729233257, 48.788960762054039, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028b0c", "Latitude": 48.78913, "Longitude": 9.19892, "X_coordina": 3514688.87, "Y_coordina": 5405759.47, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1294.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 226.6, "Total_wall": 1066.5, "Total_wa00": 0.0, "Total_outw": 1469.5, "Total_shar": 0.0, "Total_roof": 242.2, "Gross_volu": 4245.2, "Is_Gross_v": "false", "Heated_vol": 4046.3, "Ridge_mean": 20.1, "Eaves_mean": 17.22, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 21, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.374, "Heated_are": 1294.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 36.3, "Total_Year": 67516.0, "January_He": 11771.0, "February_H": 8147.0, "March_Heat": 4930.0, "April_Heat": 929.0, "May_Heatin": 24.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 91.0, "October_He": 2243.0, "November_H": 7315.0, "December_H": 11557.0, "PV_potenti": 12.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198796863809168, 48.789097011840447, 0.0 ], [ 9.198838774204075, 48.789095590627142, 0.0 ], [ 9.198906130228927, 48.789093316136999, 0.0 ], [ 9.19890568392924, 48.789083695078183, 0.0 ], [ 9.198975217019035, 48.789081326863595, 0.0 ], [ 9.198981236439669, 48.789158111252554, 0.0 ], [ 9.198986112043679, 48.789220959452464, 0.0 ], [ 9.198778872370939, 48.789227881795625, 0.0 ], [ 9.198773589464571, 48.789165214137391, 0.0 ], [ 9.198768016632942, 48.789098050796575, 0.0 ], [ 9.198796863809168, 48.789097011840447, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002865b", "Latitude": 48.79265, "Longitude": 9.20172, "X_coordina": 3514893.61, "Y_coordina": 5406150.84, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 698.7, "SecondaryU": "retail", "Secondar00": 126.9, "BuildingTy": "GMH", "Footprint_": 158.6, "Total_wall": 411.1, "Total_wa00": 0.0, "Total_outw": 570.2, "Total_shar": 502.0, "Total_roof": 182.2, "Gross_volu": 2738.4, "Is_Gross_v": "false", "Heated_vol": 2579.8, "Ridge_mean": 19.0, "Eaves_mean": 15.42, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 13, "Number_o00": 26, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.285, "Heated_are": 825.5, "Mean_Uvalu": 0.47, "Specific_d": "24,6", "Specific_s": 33.7, "Total_Year": 48155.0, "January_He": 6725.0, "February_H": 4828.0, "March_Heat": 3181.0, "April_Heat": 788.0, "May_Heatin": 29.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 83.0, "October_He": 1454.0, "November_H": 4205.0, "December_H": 6534.0, "PV_potenti": 9.14 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201689484451137, 48.792596395131405, 0.0 ], [ 9.201801338799966, 48.792659235607879, 0.0 ], [ 9.201742712853747, 48.792701512490517, 0.0 ], [ 9.201684222548533, 48.792743699181884, 0.0 ], [ 9.201553531653294, 48.792667223177538, 0.0 ], [ 9.201610936786304, 48.79262593768766, 0.0 ], [ 9.201654770803692, 48.792594387681831, 0.0 ], [ 9.201675778412316, 48.792606400653831, 0.0 ], [ 9.201689484451137, 48.792596395131405, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028479", "Latitude": 48.78875, "Longitude": 9.20271, "X_coordina": 3514967.59, "Y_coordina": 5405717.82, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 81.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 45.0, "Total_wall": 104.6, "Total_wa00": 0.0, "Total_outw": 204.5, "Total_shar": 50.3, "Total_roof": 45.0, "Gross_volu": 216.6, "Is_Gross_v": "false", "Heated_vol": 216.6, "Ridge_mean": 4.8, "Eaves_mean": 4.82, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.899, "Heated_are": 81.3, "Mean_Uvalu": 0.44, "Specific_d": "73,0", "Specific_s": 62.4, "Total_Year": 11010.0, "January_He": 1249.0, "February_H": 863.0, "March_Heat": 522.0, "April_Heat": 124.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 26.0, "October_He": 274.0, "November_H": 788.0, "December_H": 1220.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202728256111902, 48.788792240877399, 0.0 ], [ 9.202654862114189, 48.788815750208137, 0.0 ], [ 9.202609298949334, 48.788754862148473, 0.0 ], [ 9.202680650820556, 48.788731176593437, 0.0 ], [ 9.202728256111902, 48.788792240877399, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028346", "Latitude": 48.79532, "Longitude": 9.20768, "X_coordina": 3515330.9, "Y_coordina": 5406449.04, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1201.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 220.8, "Total_wall": 966.9, "Total_wa00": 0.0, "Total_outw": 1228.9, "Total_shar": 231.3, "Total_roof": 220.8, "Gross_volu": 3763.2, "Is_Gross_v": "false", "Heated_vol": 3754.9, "Ridge_mean": 18.4, "Eaves_mean": 18.38, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 19, "Number_o00": 31, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.375, "Heated_are": 1201.6, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 32.0, "Total_Year": 57472.0, "January_He": 9438.0, "February_H": 6679.0, "March_Heat": 4282.0, "April_Heat": 1036.0, "May_Heatin": 37.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 84.0, "October_He": 1840.0, "November_H": 5796.0, "December_H": 9248.0, "PV_potenti": 7.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207751177596144, 48.795411287389626, 0.0 ], [ 9.207493086835834, 48.795371017333196, 0.0 ], [ 9.207529956189742, 48.795268168283798, 0.0 ], [ 9.207533224973977, 48.795268701934376, 0.0 ], [ 9.207543030956186, 48.795270212962699, 0.0 ], [ 9.207539262625712, 48.795280560961849, 0.0 ], [ 9.207582300522617, 48.795287317581668, 0.0 ], [ 9.207585394618453, 48.795278499496789, 0.0 ], [ 9.207738206144363, 48.795302413375694, 0.0 ], [ 9.207735247809309, 48.795311141296196, 0.0 ], [ 9.207787001418049, 48.795319051123279, 0.0 ], [ 9.207754037699692, 48.795411731847643, 0.0 ], [ 9.207751177596144, 48.795411287389626, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028312", "Latitude": 48.7879, "Longitude": 9.2002, "X_coordina": 3514782.96, "Y_coordina": 5405622.96, "LOD": "LOD2", "Year_of_co": 1936, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 837.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 230.7, "Total_wall": 429.4, "Total_wa00": 0.0, "Total_outw": 671.3, "Total_shar": 465.8, "Total_roof": 322.3, "Gross_volu": 3327.8, "Is_Gross_v": "false", "Heated_vol": 3097.1, "Ridge_mean": 17.1, "Eaves_mean": 11.62, "Storey_num": 5, "Average_St": 3.2, "Number_of_": 13, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.307, "Heated_are": 837.6, "Mean_Uvalu": 0.55, "Specific_d": "15,8", "Specific_s": 43.9, "Total_Year": 50039.0, "January_He": 8520.0, "February_H": 6373.0, "March_Heat": 4372.0, "April_Heat": 1237.0, "May_Heatin": 60.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 163.0, "October_He": 2150.0, "November_H": 5544.0, "December_H": 8351.0, "PV_potenti": 15.24 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20002521978634, 48.787966882472134, 0.0 ], [ 9.199991427281269, 48.787921889410654, 0.0 ], [ 9.200247895023885, 48.787838983721677, 0.0 ], [ 9.200280184664434, 48.78788245062016, 0.0 ], [ 9.200313842745437, 48.787927803525768, 0.0 ], [ 9.200239226596731, 48.787951942913146, 0.0 ], [ 9.200058055095374, 48.788010708178689, 0.0 ], [ 9.20002521978634, 48.787966882472134, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028313", "Latitude": 48.78794, "Longitude": 9.20033, "X_coordina": 3514792.92, "Y_coordina": 5405626.46, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 19.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 24.2, "Total_wall": 26.9, "Total_wa00": 0.0, "Total_outw": 79.6, "Total_shar": 72.5, "Total_roof": 24.2, "Gross_volu": 72.2, "Is_Gross_v": "false", "Heated_vol": 61.2, "Ridge_mean": 3.0, "Eaves_mean": 3.01, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 1.11, "Heated_are": 19.6, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200239226596731, 48.787951942913146, 0.0 ], [ 9.200313842745437, 48.787927803525768, 0.0 ], [ 9.200337375683942, 48.787959415716351, 0.0 ], [ 9.200262354101396, 48.787984275213184, 0.0 ], [ 9.200239226596731, 48.787951942913146, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00028219", "Latitude": 48.78856, "Longitude": 9.21308, "X_coordina": 3515729.53, "Y_coordina": 5405698.84, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 88.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.4, "Total_wall": 59.0, "Total_wa00": 0.0, "Total_outw": 127.0, "Total_shar": 238.3, "Total_roof": 53.0, "Gross_volu": 351.1, "Is_Gross_v": "false", "Heated_vol": 309.7, "Ridge_mean": 10.2, "Eaves_mean": 6.79, "Storey_num": 3, "Average_St": 3.1, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.465, "Heated_are": 88.7, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 47.6, "Total_Year": 5625.0, "January_He": 1070.0, "February_H": 728.0, "March_Heat": 408.0, "April_Heat": 66.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 207.0, "November_H": 681.0, "December_H": 1051.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213091829876626, 48.788608430603617, 0.0 ], [ 9.213037111993357, 48.7886061039003, 0.0 ], [ 9.212977494165825, 48.788603606385671, 0.0 ], [ 9.212981390737999, 48.788559626513283, 0.0 ], [ 9.21304114498275, 48.788562213697212, 0.0 ], [ 9.213096815818428, 48.788564628558916, 0.0 ], [ 9.213091829876626, 48.788608430603617, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002820b", "Latitude": 48.78811, "Longitude": 9.21063, "X_coordina": 3515549.82, "Y_coordina": 5405648.24, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 157.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 57.3, "Total_wall": 180.8, "Total_wa00": 0.0, "Total_outw": 273.4, "Total_shar": 127.2, "Total_roof": 89.9, "Gross_volu": 608.3, "Is_Gross_v": "false", "Heated_vol": 550.9, "Ridge_mean": 13.3, "Eaves_mean": 7.87, "Storey_num": 4, "Average_St": 3.1, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.573, "Heated_are": 157.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 61.4, "Total_Year": 12130.0, "January_He": 2302.0, "February_H": 1654.0, "March_Heat": 1059.0, "April_Heat": 249.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 556.0, "November_H": 1523.0, "December_H": 2249.0, "PV_potenti": 3.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210520278886412, 48.788152661194033, 0.0 ], [ 9.2105395057743, 48.788096783452239, 0.0 ], [ 9.2106002386752, 48.788105754692545, 0.0 ], [ 9.210658792695941, 48.788114370191927, 0.0 ], [ 9.210639974572381, 48.788170337129458, 0.0 ], [ 9.21058101185133, 48.788161632444258, 0.0 ], [ 9.210520278886412, 48.788152661194033, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027ec1", "Latitude": 48.79195, "Longitude": 9.19809, "X_coordina": 3514627.04, "Y_coordina": 5406072.77, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 376.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 125.4, "Total_wall": 278.3, "Total_wa00": 0.0, "Total_outw": 486.5, "Total_shar": 87.4, "Total_roof": 153.2, "Gross_volu": 1102.8, "Is_Gross_v": "false", "Heated_vol": 999.1, "Ridge_mean": 10.4, "Eaves_mean": 7.13, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.534, "Heated_are": 376.3, "Mean_Uvalu": 0.54, "Specific_d": "15,8", "Specific_s": 48.6, "Total_Year": 24248.0, "January_He": 4305.0, "February_H": 3123.0, "March_Heat": 2098.0, "April_Heat": 585.0, "May_Heatin": 33.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 84.0, "October_He": 1066.0, "November_H": 2784.0, "December_H": 4208.0, "PV_potenti": 7.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197941649087873, 48.791963811255485, 0.0 ], [ 9.197939207463792, 48.791965883695099, 0.0 ], [ 9.197935796883838, 48.791963821314681, 0.0 ], [ 9.197975963656122, 48.79193371778554, 0.0 ], [ 9.198018708803636, 48.791901721413026, 0.0 ], [ 9.198157708129855, 48.791981694159077, 0.0 ], [ 9.198155808072174, 48.791983046282574, 0.0 ], [ 9.198114419673608, 48.792013961288191, 0.0 ], [ 9.198074387956455, 48.792043794862074, 0.0 ], [ 9.198072759028271, 48.792044876747063, 0.0 ], [ 9.197957350565201, 48.791976553415886, 0.0 ], [ 9.197958700222806, 48.791973673540674, 0.0 ], [ 9.197941649087873, 48.791963811255485, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027e11", "Latitude": 48.7887, "Longitude": 9.21307, "X_coordina": 3515728.56, "Y_coordina": 5405713.57, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 88.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.5, "Total_wall": 50.0, "Total_wa00": 0.0, "Total_outw": 115.0, "Total_shar": 222.7, "Total_roof": 53.0, "Gross_volu": 317.5, "Is_Gross_v": "false", "Heated_vol": 276.1, "Ridge_mean": 9.4, "Eaves_mean": 5.96, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.486, "Heated_are": 88.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 44.8, "Total_Year": 5359.0, "January_He": 1005.0, "February_H": 685.0, "March_Heat": 384.0, "April_Heat": 60.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 193.0, "November_H": 639.0, "December_H": 986.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21296875180454, 48.7886923771973, 0.0 ], [ 9.213029049800141, 48.788694783534595, 0.0 ], [ 9.213083903106767, 48.788696930143814, 0.0 ], [ 9.213080686297101, 48.788740728913588, 0.0 ], [ 9.213025016409354, 48.788738583813341, 0.0 ], [ 9.212964990919847, 48.788736266893665, 0.0 ], [ 9.21296875180454, 48.7886923771973, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027d11", "Latitude": 48.79497, "Longitude": 9.2045, "X_coordina": 3515096.99, "Y_coordina": 5406409.97, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 913.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 213.1, "Total_wall": 772.9, "Total_wa00": 0.0, "Total_outw": 1116.7, "Total_shar": 202.4, "Total_roof": 213.1, "Gross_volu": 2914.0, "Is_Gross_v": "false", "Heated_vol": 2853.2, "Ridge_mean": 13.8, "Eaves_mean": 13.79, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 11, "Number_o00": 24, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.417, "Heated_are": 913.0, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 34.1, "Total_Year": 45607.0, "January_He": 7709.0, "February_H": 5410.0, "March_Heat": 3385.0, "April_Heat": 676.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 69.0, "October_He": 1578.0, "November_H": 4797.0, "December_H": 7504.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204410408908544, 48.794909377551697, 0.0 ], [ 9.204457205334041, 48.794936901007837, 0.0 ], [ 9.204460190890673, 48.794934737541922, 0.0 ], [ 9.204469961269957, 48.794927526310481, 0.0 ], [ 9.204550592042724, 48.79497468290711, 0.0 ], [ 9.204540414444931, 48.794982164639258, 0.0 ], [ 9.204593897020253, 48.795013812647063, 0.0 ], [ 9.204562019865284, 48.79507384828397, 0.0 ], [ 9.204535279461137, 48.795058249083262, 0.0 ], [ 9.204506918451559, 48.795079251639024, 0.0 ], [ 9.204481678517624, 48.795064459073195, 0.0 ], [ 9.204472722557584, 48.795071129318103, 0.0 ], [ 9.204419104987235, 48.79503975126466, 0.0 ], [ 9.204393458024761, 48.79505877065673, 0.0 ], [ 9.204362488166954, 48.795040661063169, 0.0 ], [ 9.204388270872645, 48.795021551513464, 0.0 ], [ 9.204316098092246, 48.794979145745963, 0.0 ], [ 9.204410408908544, 48.794909377551697, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027a64", "Latitude": 48.78849, "Longitude": 9.20985, "X_coordina": 3515491.92, "Y_coordina": 5405690.16, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 93.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.1, "Total_wall": 55.1, "Total_wa00": 0.0, "Total_outw": 130.9, "Total_shar": 190.6, "Total_roof": 64.0, "Gross_volu": 338.0, "Is_Gross_v": "false", "Heated_vol": 291.9, "Ridge_mean": 9.2, "Eaves_mean": 5.49, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.525, "Heated_are": 93.4, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 46.6, "Total_Year": 5829.0, "January_He": 1111.0, "February_H": 747.0, "March_Heat": 413.0, "April_Heat": 63.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 208.0, "November_H": 705.0, "December_H": 1092.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209749641507749, 48.78848669498948, 0.0 ], [ 9.209797537082338, 48.788484809270962, 0.0 ], [ 9.20985278029452, 48.788482640372479, 0.0 ], [ 9.209856683028903, 48.7885373967653, 0.0 ], [ 9.20980239162602, 48.788539384084288, 0.0 ], [ 9.209754495624946, 48.788541179881932, 0.0 ], [ 9.209754087359684, 48.78854118062555, 0.0 ], [ 9.209753089767535, 48.788530391604269, 0.0 ], [ 9.209749641507749, 48.78848669498948, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000279ac", "Latitude": 48.79109, "Longitude": 9.20904, "X_coordina": 3515431.87, "Y_coordina": 5405979.42, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 124.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.1, "Total_wall": 68.9, "Total_wa00": 0.0, "Total_outw": 134.4, "Total_shar": 229.7, "Total_roof": 68.3, "Gross_volu": 402.5, "Is_Gross_v": "false", "Heated_vol": 390.2, "Ridge_mean": 10.3, "Eaves_mean": 6.14, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.47, "Heated_are": 124.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.8, "Total_Year": 7195.0, "January_He": 1296.0, "February_H": 886.0, "March_Heat": 554.0, "April_Heat": 139.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 248.0, "November_H": 788.0, "December_H": 1284.0, "PV_potenti": 3.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208946599345882, 48.791146747020235, 0.0 ], [ 9.208958152332281, 48.791110306995144, 0.0 ], [ 9.208970106866433, 48.791072247614984, 0.0 ], [ 9.209047043275763, 48.791082359272494, 0.0 ], [ 9.209035634673111, 48.791120777364085, 0.0 ], [ 9.209025032541323, 48.79115676605295, 0.0 ], [ 9.208946599345882, 48.791146747020235, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000278d8", "Latitude": 48.7946, "Longitude": 9.20244, "X_coordina": 3514945.7, "Y_coordina": 5406367.67, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 726.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 138.3, "Total_wall": 560.2, "Total_wa00": 0.0, "Total_outw": 777.9, "Total_shar": 213.2, "Total_roof": 219.6, "Gross_volu": 2400.7, "Is_Gross_v": "false", "Heated_vol": 2269.6, "Ridge_mean": 20.9, "Eaves_mean": 14.63, "Storey_num": 8, "Average_St": 2.5, "Number_of_": 12, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.398, "Heated_are": 726.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 38.1, "Total_Year": 39200.0, "January_He": 6938.0, "February_H": 4788.0, "March_Heat": 2883.0, "April_Heat": 566.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 1350.0, "November_H": 4259.0, "December_H": 6831.0, "PV_potenti": 8.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202318583699572, 48.794638085380278, 0.0 ], [ 9.202336767160334, 48.794624474975834, 0.0 ], [ 9.202281926089251, 48.794593008151992, 0.0 ], [ 9.202355072501893, 48.794539644897228, 0.0 ], [ 9.202506643474008, 48.794628492703247, 0.0 ], [ 9.202416403202701, 48.794695644404875, 0.0 ], [ 9.202368516380997, 48.794667402646752, 0.0 ], [ 9.202318583699572, 48.794638085380278, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027795", "Latitude": 48.78972, "Longitude": 9.20681, "X_coordina": 3515268.44, "Y_coordina": 5405825.88, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 799.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 180.1, "Total_wall": 683.8, "Total_wa00": 0.0, "Total_outw": 1018.7, "Total_shar": 0.0, "Total_roof": 219.2, "Gross_volu": 2677.6, "Is_Gross_v": "false", "Heated_vol": 2497.5, "Ridge_mean": 16.7, "Eaves_mean": 13.46, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 13, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.425, "Heated_are": 799.2, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 35.4, "Total_Year": 40970.0, "January_He": 7114.0, "February_H": 4922.0, "March_Heat": 2939.0, "April_Heat": 537.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 51.0, "October_He": 1342.0, "November_H": 4423.0, "December_H": 6971.0, "PV_potenti": 10.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206678620833115, 48.789805042788011, 0.0 ], [ 9.206708499663876, 48.78965751440137, 0.0 ], [ 9.206855259114354, 48.789670109957797, 0.0 ], [ 9.20682470283373, 48.78981826906432, 0.0 ], [ 9.206678620833115, 48.789805042788011, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000276eb", "Latitude": 48.795, "Longitude": 9.20772, "X_coordina": 3515333.91, "Y_coordina": 5406413.04, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1454.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 255.9, "Total_wall": 1103.9, "Total_wa00": 0.0, "Total_outw": 1461.9, "Total_shar": 231.6, "Total_roof": 255.9, "Gross_volu": 4800.9, "Is_Gross_v": "false", "Heated_vol": 4545.0, "Ridge_mean": 19.5, "Eaves_mean": 19.48, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 23, "Number_o00": 39, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.349, "Heated_are": 1454.4, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 32.9, "Total_Year": 70945.0, "January_He": 11677.0, "February_H": 8418.0, "March_Heat": 5349.0, "April_Heat": 1066.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 97.0, "October_He": 2481.0, "November_H": 7460.0, "December_H": 11337.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207615315509621, 48.794943120642166, 0.0 ], [ 9.20763519993521, 48.794946232116473, 0.0 ], [ 9.207648654275163, 48.794908350041879, 0.0 ], [ 9.207785938258573, 48.794929773996458, 0.0 ], [ 9.207759297138697, 48.795004368686755, 0.0 ], [ 9.207775095449326, 48.795006768120089, 0.0 ], [ 9.207760025728939, 48.795048969453539, 0.0 ], [ 9.207744090928484, 48.795046480340815, 0.0 ], [ 9.207716373086154, 48.795124044439127, 0.0 ], [ 9.207579088602177, 48.795102620403256, 0.0 ], [ 9.207593083368964, 48.795063748202999, 0.0 ], [ 9.207573879800785, 48.795060725417805, 0.0 ], [ 9.207573198899526, 48.795060636721558, 0.0 ], [ 9.207615315509621, 48.794943120642166, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000274a7", "Latitude": 48.78795, "Longitude": 9.21355, "X_coordina": 3515763.83, "Y_coordina": 5405631.16, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 488.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 126.3, "Total_wall": 363.0, "Total_wa00": 0.0, "Total_outw": 575.2, "Total_shar": 168.8, "Total_roof": 215.2, "Gross_volu": 1625.8, "Is_Gross_v": "false", "Heated_vol": 1527.7, "Ridge_mean": 16.1, "Eaves_mean": 9.64, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.45, "Heated_are": 488.9, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 46.5, "Total_Year": 30492.0, "January_He": 5519.0, "February_H": 3940.0, "March_Heat": 2462.0, "April_Heat": 503.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1249.0, "November_H": 3603.0, "December_H": 5389.0, "PV_potenti": 10.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21352587454073, 48.787915664097703, 0.0 ], [ 9.213583066442288, 48.787923920942518, 0.0 ], [ 9.213543154221357, 48.788043143810306, 0.0 ], [ 9.213486643388807, 48.788035065530586, 0.0 ], [ 9.213419511306096, 48.788025478204865, 0.0 ], [ 9.213459423043203, 48.787906075533137, 0.0 ], [ 9.21352587454073, 48.787915664097703, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000273b9", "Latitude": 48.79488, "Longitude": 9.20827, "X_coordina": 3515374.16, "Y_coordina": 5406400.54, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1136.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 240.8, "Total_wall": 966.6, "Total_wa00": 0.0, "Total_outw": 1262.6, "Total_shar": 197.5, "Total_roof": 240.8, "Gross_volu": 3551.5, "Is_Gross_v": "false", "Heated_vol": 3551.5, "Ridge_mean": 15.4, "Eaves_mean": 15.42, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 14, "Number_o00": 27, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.408, "Heated_are": 1136.5, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 37.2, "Total_Year": 60262.0, "January_He": 10246.0, "February_H": 7311.0, "March_Heat": 4713.0, "April_Heat": 1108.0, "May_Heatin": 39.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 119.0, "October_He": 2244.0, "November_H": 6474.0, "December_H": 10006.0, "PV_potenti": 10.87 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208263054476054, 48.795010562726681, 0.0 ], [ 9.208128902737629, 48.794989673221181, 0.0 ], [ 9.208139800838573, 48.794959079517064, 0.0 ], [ 9.208122232034828, 48.794956413562744, 0.0 ], [ 9.208154123047938, 48.794867871148, 0.0 ], [ 9.208172645305286, 48.794870715221087, 0.0 ], [ 9.20818529188964, 48.794835082632304, 0.0 ], [ 9.208166497061802, 48.794832149130393, 0.0 ], [ 9.208179682109458, 48.794795076791772, 0.0 ], [ 9.208197115126644, 48.794797832906454, 0.0 ], [ 9.208331810803356, 48.794818721349174, 0.0 ], [ 9.20831808665181, 48.794857053610002, 0.0 ], [ 9.208263054476054, 48.795010562726681, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027367", "Latitude": 48.79043, "Longitude": 9.19793, "X_coordina": 3514615.93, "Y_coordina": 5405903.14, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 2283.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 396.4, "Total_wall": 1296.4, "Total_wa00": 0.0, "Total_outw": 1727.7, "Total_shar": 154.0, "Total_roof": 521.9, "Gross_volu": 7411.6, "Is_Gross_v": "false", "Heated_vol": 7134.8, "Ridge_mean": 19.0, "Eaves_mean": 16.56, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 37, "Number_o00": 63, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.307, "Heated_are": 2283.1, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 31.5, "Total_Year": 108064.0, "January_He": 17708.0, "February_H": 12602.0, "March_Heat": 7947.0, "April_Heat": 1575.0, "May_Heatin": 36.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 136.0, "October_He": 3569.0, "November_H": 11080.0, "December_H": 17246.0, "PV_potenti": 19.89 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198108606348063, 48.790502805056185, 0.0 ], [ 9.19799828793685, 48.79058581444319, 0.0 ], [ 9.19767049697113, 48.790393671261562, 0.0 ], [ 9.197779055479693, 48.790313003222408, 0.0 ], [ 9.197782312176559, 48.790310569691194, 0.0 ], [ 9.197813822900367, 48.790329129756422, 0.0 ], [ 9.197898806740548, 48.79037925104506, 0.0 ], [ 9.197944503820075, 48.79040605966695, 0.0 ], [ 9.198108606348063, 48.790502805056185, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027368", "Latitude": 48.7903, "Longitude": 9.19794, "X_coordina": 3514616.64, "Y_coordina": 5405889.17, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 379.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 78.7, "Total_wall": 280.4, "Total_wa00": 0.0, "Total_outw": 343.2, "Total_shar": 312.5, "Total_roof": 78.7, "Gross_volu": 1186.7, "Is_Gross_v": "false", "Heated_vol": 1186.7, "Ridge_mean": 15.1, "Eaves_mean": 15.08, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.369, "Heated_are": 379.7, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 36.9, "Total_Year": 20009.0, "January_He": 3281.0, "February_H": 2447.0, "March_Heat": 1651.0, "April_Heat": 421.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 48.0, "October_He": 805.0, "November_H": 2141.0, "December_H": 3187.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197813822900367, 48.790329129756422, 0.0 ], [ 9.197897136321888, 48.790265950151216, 0.0 ], [ 9.197983622825044, 48.790317507573448, 0.0 ], [ 9.197898806740548, 48.79037925104506, 0.0 ], [ 9.197813822900367, 48.790329129756422, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027369", "Latitude": 48.79028, "Longitude": 9.19808, "X_coordina": 3514626.77, "Y_coordina": 5405887.3, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 115.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 71.1, "Total_wall": 264.4, "Total_wa00": 0.0, "Total_outw": 540.2, "Total_shar": 197.8, "Total_roof": 71.1, "Gross_volu": 384.4, "Is_Gross_v": "false", "Heated_vol": 362.3, "Ridge_mean": 5.4, "Eaves_mean": 5.41, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 1.099, "Heated_are": 115.9, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 84.6, "Total_Year": 11642.0, "January_He": 2424.0, "February_H": 1666.0, "March_Heat": 1001.0, "April_Heat": 228.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 520.0, "November_H": 1527.0, "December_H": 2385.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197899623301469, 48.790379249641774, 0.0 ], [ 9.197984032166367, 48.790317776640542, 0.0 ], [ 9.197983622825044, 48.790317507573448, 0.0 ], [ 9.198134788919173, 48.790205022896963, 0.0 ], [ 9.19815006674497, 48.790213988971665, 0.0 ], [ 9.198123334658165, 48.79023390808775, 0.0 ], [ 9.198173533068864, 48.790263316660038, 0.0 ], [ 9.198164713216835, 48.790269986186061, 0.0 ], [ 9.198114378357481, 48.79024048792111, 0.0 ], [ 9.197999442201031, 48.790325753347894, 0.0 ], [ 9.198029858605143, 48.790342876457629, 0.0 ], [ 9.197945456474983, 48.79040605802939, 0.0 ], [ 9.197899623301469, 48.790379249641774, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002736a", "Latitude": 48.79018, "Longitude": 9.19811, "X_coordina": 3514629.22, "Y_coordina": 5405875.17, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1453.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 346.3, "Total_wall": 660.7, "Total_wa00": 0.0, "Total_outw": 957.7, "Total_shar": 695.4, "Total_roof": 348.1, "Gross_volu": 4888.9, "Is_Gross_v": "false", "Heated_vol": 4542.6, "Ridge_mean": 15.0, "Eaves_mean": 12.07, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 18, "Number_o00": 27, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.287, "Heated_are": 1453.6, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 30.0, "Total_Year": 66571.0, "January_He": 10413.0, "February_H": 7693.0, "March_Heat": 5094.0, "April_Heat": 1196.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 95.0, "October_He": 2277.0, "November_H": 6644.0, "December_H": 10105.0, "PV_potenti": 13.04 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198270768202571, 48.790175923369922, 0.0 ], [ 9.198271995873377, 48.790176640645178, 0.0 ], [ 9.198208491389611, 48.790224229641623, 0.0 ], [ 9.198208900731368, 48.790224498707936, 0.0 ], [ 9.19819099027834, 48.790238197925284, 0.0 ], [ 9.19815006674497, 48.790213988971665, 0.0 ], [ 9.198134788919173, 48.790205022896963, 0.0 ], [ 9.197983622825044, 48.790317507573448, 0.0 ], [ 9.197897136321888, 48.790265950151216, 0.0 ], [ 9.197866852213108, 48.790247837619042, 0.0 ], [ 9.19809984692947, 48.790075413144187, 0.0 ], [ 9.198136814077255, 48.790097200985727, 0.0 ], [ 9.198270768202571, 48.790175923369922, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000272a8", "Latitude": 48.79484, "Longitude": 9.2104, "X_coordina": 3515530.29, "Y_coordina": 5406396.15, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1022, "PrimaryUsa": "health care", "PrimaryU00": 3245.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 752.7, "Total_wall": 1566.4, "Total_wa00": 0.0, "Total_outw": 2193.5, "Total_shar": 0.0, "Total_roof": 752.7, "Gross_volu": 8795.5, "Is_Gross_v": "false", "Heated_vol": 8795.5, "Ridge_mean": 14.7, "Eaves_mean": 14.67, "Storey_num": 6, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.349, "Heated_are": 3245.0, "Mean_Uvalu": 0.39, "Specific_d": "155,5", "Specific_s": 108.6, "Total_Year": 857017.99999999988, "January_He": 70792.0, "February_H": 56002.0, "March_Heat": 45184.0, "April_Heat": 23305.0, "May_Heatin": 6441.0, "June_Heati": 662, "July_Heati": 122, "August_Hea": 201, "September_": 8098.0, "October_He": 25377.0, "November_H": 48343.0, "December_H": 67791.0, "PV_potenti": 34.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210286991380816, 48.794984403871609, 0.0 ], [ 9.210232649838234, 48.794976050273377, 0.0 ], [ 9.210155019201562, 48.794964142209338, 0.0 ], [ 9.210177347572484, 48.794900615432546, 0.0 ], [ 9.210142482005107, 48.794895283645928, 0.0 ], [ 9.210167232089084, 48.79482500818466, 0.0 ], [ 9.210143806938454, 48.794821453990444, 0.0 ], [ 9.210169769160901, 48.79474811891496, 0.0 ], [ 9.210288803265213, 48.794766605715978, 0.0 ], [ 9.210301315227055, 48.794731692528458, 0.0 ], [ 9.210331141799802, 48.794736314082016, 0.0 ], [ 9.210343651845255, 48.794700951275424, 0.0 ], [ 9.210526151139494, 48.794728943714851, 0.0 ], [ 9.210501536956365, 48.794799039158924, 0.0 ], [ 9.210561325952595, 48.794808191982625, 0.0 ], [ 9.210535636104821, 48.794881436724133, 0.0 ], [ 9.210508942112023, 48.794877349038792, 0.0 ], [ 9.210471953179313, 48.794982627203346, 0.0 ], [ 9.210445395243781, 48.7949785392547, 0.0 ], [ 9.210433155908989, 48.795013541881751, 0.0 ], [ 9.210364105476799, 48.795002967133122, 0.0 ], [ 9.210358995860309, 48.795017903776213, 0.0 ], [ 9.210279594249767, 48.795005639336885, 0.0 ], [ 9.210286991380816, 48.794984403871609, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002711e", "Latitude": 48.78819, "Longitude": 9.20934, "X_coordina": 3515454.96, "Y_coordina": 5405656.68, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 133.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 54.0, "Total_wall": 143.3, "Total_wa00": 0.0, "Total_outw": 258.7, "Total_shar": 99.3, "Total_roof": 84.9, "Gross_volu": 417.5, "Is_Gross_v": "false", "Heated_vol": 417.3, "Ridge_mean": 10.0, "Eaves_mean": 5.43, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.676, "Heated_are": 133.5, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 55.2, "Total_Year": 9481.0, "January_He": 1865.0, "February_H": 1251.0, "March_Heat": 725.0, "April_Heat": 161.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 20.0, "October_He": 337.0, "November_H": 1136.0, "December_H": 1863.0, "PV_potenti": 3.24 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209249852056576, 48.788208121485482, 0.0 ], [ 9.209264532297636, 48.788171226110343, 0.0 ], [ 9.209359316476769, 48.788187240091787, 0.0 ], [ 9.209345450207636, 48.788223504533647, 0.0 ], [ 9.209334275001787, 48.788252390342031, 0.0 ], [ 9.209238673808422, 48.788236287900958, 0.0 ], [ 9.209249852056576, 48.788208121485482, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002711f", "Latitude": 48.78818, "Longitude": 9.20925, "X_coordina": 3515448.47, "Y_coordina": 5405655.95, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 10.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 19.8, "Total_wall": 43.7, "Total_wa00": 0.0, "Total_outw": 157.1, "Total_shar": 0.0, "Total_roof": 21.2, "Gross_volu": 58.7, "Is_Gross_v": "false", "Heated_vol": 39.0, "Ridge_mean": 4.3, "Eaves_mean": 1.68, "Storey_num": 1, "Average_St": 3.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.734, "Heated_are": 10.4, "Mean_Uvalu": 0.46, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209235144510094, 48.788205720269886, 0.0 ], [ 9.209224648187529, 48.788234245139634, 0.0 ], [ 9.209178344768018, 48.788226236125865, 0.0 ], [ 9.209198142939986, 48.788176472379824, 0.0 ], [ 9.209242949354781, 48.788184484105706, 0.0 ], [ 9.209235144510094, 48.788205720269886, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027114", "Latitude": 48.79127, "Longitude": 9.21362, "X_coordina": 3515767.94, "Y_coordina": 5405999.58, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 550.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 149.0, "Total_wall": 252.0, "Total_wa00": 0.0, "Total_outw": 429.4, "Total_shar": 374.7, "Total_roof": 210.9, "Gross_volu": 1869.8, "Is_Gross_v": "false", "Heated_vol": 1720.8, "Ridge_mean": 15.2, "Eaves_mean": 9.88, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.342, "Heated_are": 550.6, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 35.9, "Total_Year": 28509.0, "January_He": 4829.0, "February_H": 3480.0, "March_Heat": 2169.0, "April_Heat": 407.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 1036.0, "November_H": 3114.0, "December_H": 4703.0, "PV_potenti": 10.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213609889324692, 48.791229643940909, 0.0 ], [ 9.213674882167004, 48.79124723832151, 0.0 ], [ 9.213601340770325, 48.791363915747077, 0.0 ], [ 9.213536483135684, 48.791346141227415, 0.0 ], [ 9.213467810283669, 48.791327294659929, 0.0 ], [ 9.213541217367501, 48.791210977262359, 0.0 ], [ 9.213609889324692, 48.791229643940909, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00027112", "Latitude": 48.7909, "Longitude": 9.20838, "X_coordina": 3515383.62, "Y_coordina": 5405957.95, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 401.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 159.8, "Total_wall": 236.7, "Total_wa00": 0.0, "Total_outw": 493.4, "Total_shar": 133.3, "Total_roof": 237.7, "Gross_volu": 1375.6, "Is_Gross_v": "false", "Heated_vol": 1254.7, "Ridge_mean": 11.4, "Eaves_mean": 6.24, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.485, "Heated_are": 401.5, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 46.0, "Total_Year": 24825.0, "January_He": 4408.0, "February_H": 3148.0, "March_Heat": 2087.0, "April_Heat": 587.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 74.0, "October_He": 996.0, "November_H": 2802.0, "December_H": 4336.0, "PV_potenti": 10.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208463368955281, 48.790895566888672, 0.0 ], [ 9.208451569543625, 48.790938301964573, 0.0 ], [ 9.20844017318262, 48.790979777378844, 0.0 ], [ 9.208215353056156, 48.790949430207867, 0.0 ], [ 9.208240455633353, 48.790865486085387, 0.0 ], [ 9.208463368955281, 48.790895566888672, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000270e8", "Latitude": 48.78825, "Longitude": 9.20972, "X_coordina": 3515482.95, "Y_coordina": 5405663.8, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 146.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 54.2, "Total_wall": 88.7, "Total_wa00": 0.0, "Total_outw": 161.7, "Total_shar": 204.1, "Total_roof": 85.1, "Gross_volu": 510.7, "Is_Gross_v": "false", "Heated_vol": 456.5, "Ridge_mean": 11.7, "Eaves_mean": 7.1, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.475, "Heated_are": 146.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 43.9, "Total_Year": 8722.0, "January_He": 1562.0, "February_H": 1085.0, "March_Heat": 703.0, "April_Heat": 190.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 23.0, "October_He": 327.0, "November_H": 966.0, "December_H": 1543.0, "PV_potenti": 3.27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209740215812682, 48.788249583477949, 0.0 ], [ 9.209726890029843, 48.788284857820742, 0.0 ], [ 9.209715178921686, 48.788315722962174, 0.0 ], [ 9.209620125209193, 48.788300429153594, 0.0 ], [ 9.209631700284422, 48.788269564269363, 0.0 ], [ 9.209644754703918, 48.788234470278823, 0.0 ], [ 9.209734908020303, 48.788249503221195, 0.0 ], [ 9.209740215812682, 48.788249583477949, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000270cc", "Latitude": 48.78978, "Longitude": 9.19762, "X_coordina": 3514593.29, "Y_coordina": 5405831.24, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 1981.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 343.6, "Total_wall": 1406.3, "Total_wa00": 0.0, "Total_outw": 1937.6, "Total_shar": 0.0, "Total_roof": 479.8, "Gross_volu": 6536.1, "Is_Gross_v": "false", "Heated_vol": 6192.5, "Ridge_mean": 22.7, "Eaves_mean": 17.02, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.354, "Heated_are": 1981.6, "Mean_Uvalu": 0.45, "Specific_d": "73,0", "Specific_s": 44.4, "Total_Year": 232712.0, "January_He": 20960.0, "February_H": 15119.0, "March_Heat": 10028.0, "April_Heat": 2874.0, "May_Heatin": 229.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 1, "September_": 503.0, "October_He": 4822.0, "November_H": 13144.0, "December_H": 20349.0, "PV_potenti": 18.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19765879418731, 48.789770340771589, 0.0 ], [ 9.19778128244903, 48.789840810435152, 0.0 ], [ 9.197662820601101, 48.789929228914538, 0.0 ], [ 9.1975414167901, 48.789857678182308, 0.0 ], [ 9.19755038603634, 48.789850927515943, 0.0 ], [ 9.197376318256437, 48.789749063762656, 0.0 ], [ 9.197474831892803, 48.789675247413513, 0.0 ], [ 9.197648884205504, 48.78977665243535, 0.0 ], [ 9.19765879418731, 48.789770340771589, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000270cd", "Latitude": 48.7896, "Longitude": 9.19737, "X_coordina": 3514574.55, "Y_coordina": 5405811.57, "LOD": "LOD2", "Year_of_co": 1994, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 98.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 122.9, "Total_wall": 119.5, "Total_wa00": 0.0, "Total_outw": 392.0, "Total_shar": 41.9, "Total_roof": 122.9, "Gross_volu": 335.1, "Is_Gross_v": "false", "Heated_vol": 306.2, "Ridge_mean": 2.7, "Eaves_mean": 2.74, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.124, "Heated_are": 98.0, "Mean_Uvalu": 0.25, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197398093394142, 48.789610364196577, 0.0 ], [ 9.197261857690037, 48.789712660973059, 0.0 ], [ 9.197200476181491, 48.789676976497994, 0.0 ], [ 9.197384339941607, 48.789538898482562, 0.0 ], [ 9.197418849687669, 48.789558892295808, 0.0 ], [ 9.19742553332966, 48.789562747553667, 0.0 ], [ 9.197445721411544, 48.789574582860631, 0.0 ], [ 9.197398093394142, 48.789610364196577, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000270cf", "Latitude": 48.78962, "Longitude": 9.1976, "X_coordina": 3514591.83, "Y_coordina": 5405813.39, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 31.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 39.2, "Total_wall": 35.8, "Total_wa00": 0.0, "Total_outw": 114.9, "Total_shar": 95.4, "Total_roof": 39.2, "Gross_volu": 117.8, "Is_Gross_v": "false", "Heated_vol": 98.1, "Ridge_mean": 3.0, "Eaves_mean": 3.0, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 1.031, "Heated_are": 31.4, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197579775453272, 48.789679383737159, 0.0 ], [ 9.197547173666385, 48.789660106088519, 0.0 ], [ 9.197497568584563, 48.789642925836937, 0.0 ], [ 9.197520709286017, 48.78960952447909, 0.0 ], [ 9.197532565828379, 48.789613730552304, 0.0 ], [ 9.197540148825464, 48.789604005792079, 0.0 ], [ 9.197619054505859, 48.789631566887707, 0.0 ], [ 9.197579775453272, 48.789679383737159, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002707d", "Latitude": 48.79507, "Longitude": 9.2082, "X_coordina": 3515368.73, "Y_coordina": 5406421.77, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1140.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 235.5, "Total_wall": 944.5, "Total_wa00": 0.0, "Total_outw": 1234.4, "Total_shar": 198.3, "Total_roof": 235.5, "Gross_volu": 3565.3, "Is_Gross_v": "false", "Heated_vol": 3565.3, "Ridge_mean": 15.7, "Eaves_mean": 15.72, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 14, "Number_o00": 22, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.397, "Heated_are": 1140.9, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 38.4, "Total_Year": 61936.0, "January_He": 10383.0, "February_H": 7607.0, "March_Heat": 5083.0, "April_Heat": 1261.0, "May_Heatin": 41.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 149.0, "October_He": 2501.0, "November_H": 6760.0, "December_H": 10079.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208057920493925, 48.795137186183794, 0.0 ], [ 9.208101243137326, 48.795015351418897, 0.0 ], [ 9.208118811960547, 48.795018017376371, 0.0 ], [ 9.208128902737629, 48.794989673221181, 0.0 ], [ 9.208263054476054, 48.795010562726681, 0.0 ], [ 9.208213541298809, 48.795149314372601, 0.0 ], [ 9.208196184512929, 48.795197904469028, 0.0 ], [ 9.208044735267821, 48.79517425850657, 0.0 ], [ 9.208046888801393, 48.795168409585408, 0.0 ], [ 9.208065683747904, 48.79517134310646, 0.0 ], [ 9.208073621799938, 48.795149027724072, 0.0 ], [ 9.208076715429405, 48.795140119703078, 0.0 ], [ 9.208057920493925, 48.795137186183794, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00026e38", "Latitude": 48.78885, "Longitude": 9.21344, "X_coordina": 3515755.46, "Y_coordina": 5405731.3, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 66.3, "SecondaryU": "retail", "Secondar00": 37.0, "BuildingTy": "RH", "Footprint_": 46.3, "Total_wall": 67.1, "Total_wa00": 0.0, "Total_outw": 134.9, "Total_shar": 215.0, "Total_roof": 60.0, "Gross_volu": 369.2, "Is_Gross_v": "false", "Heated_vol": 322.9, "Ridge_mean": 9.8, "Eaves_mean": 6.06, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.5, "Heated_are": 103.3, "Mean_Uvalu": 0.5, "Specific_d": "36,3", "Specific_s": 49.8, "Total_Year": 8894.0, "January_He": 1234.0, "February_H": 884.0, "March_Heat": 579.0, "April_Heat": 144.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 22.0, "October_He": 278.0, "November_H": 777.0, "December_H": 1215.0, "PV_potenti": 1.07 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213345537831733, 48.788841852285536, 0.0 ], [ 9.21340945628639, 48.788831482558443, 0.0 ], [ 9.213436993698632, 48.788906787542018, 0.0 ], [ 9.213358385504199, 48.788919072897194, 0.0 ], [ 9.213345537831733, 48.788841852285536, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002695c", "Latitude": 48.79145, "Longitude": 9.20283, "X_coordina": 3514975.13, "Y_coordina": 5406018.02, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 699.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 112.9, "Total_wall": 679.0, "Total_wa00": 0.0, "Total_outw": 903.3, "Total_shar": 122.3, "Total_roof": 187.6, "Gross_volu": 2240.7, "Is_Gross_v": "false", "Heated_vol": 2184.4, "Ridge_mean": 22.5, "Eaves_mean": 17.24, "Storey_num": 8, "Average_St": 2.8, "Number_of_": 11, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.446, "Heated_are": 699.0, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 41.8, "Total_Year": 40269.0, "January_He": 7237.0, "February_H": 5053.0, "March_Heat": 3077.0, "April_Heat": 608.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 1473.0, "November_H": 4541.0, "December_H": 7114.0, "PV_potenti": 7.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202825455798775, 48.791535100006726, 0.0 ], [ 9.202817043181751, 48.791541409475705, 0.0 ], [ 9.202674211057566, 48.79145749244968, 0.0 ], [ 9.202748577376044, 48.791404126768626, 0.0 ], [ 9.202777497897371, 48.791420981485182, 0.0 ], [ 9.202798506370003, 48.791433264024263, 0.0 ], [ 9.202890044157066, 48.791486967025513, 0.0 ], [ 9.202877696360245, 48.791496160987407, 0.0 ], [ 9.202825455798775, 48.791535100006726, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002695d", "Latitude": 48.79154, "Longitude": 9.20299, "X_coordina": 3514987.18, "Y_coordina": 5406028.24, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 39.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.7, "Total_wall": 54.1, "Total_wa00": 0.0, "Total_outw": 165.8, "Total_shar": 54.5, "Total_roof": 47.7, "Gross_volu": 127.1, "Is_Gross_v": "false", "Heated_vol": 122.1, "Ridge_mean": 2.7, "Eaves_mean": 2.65, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.194, "Heated_are": 39.1, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202915995914971, 48.791543842941607, 0.0 ], [ 9.202940383780433, 48.791516643037433, 0.0 ], [ 9.202991678315753, 48.791546856885624, 0.0 ], [ 9.202976154079744, 48.791612078862258, 0.0 ], [ 9.202901537150604, 48.791603307920148, 0.0 ], [ 9.202915995914971, 48.791543842941607, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00026931", "Latitude": 48.79048, "Longitude": 9.21333, "X_coordina": 3515746.88, "Y_coordina": 5405911.55, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 534.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 144.0, "Total_wall": 382.5, "Total_wa00": 0.0, "Total_outw": 622.7, "Total_shar": 179.0, "Total_roof": 210.4, "Gross_volu": 1812.8, "Is_Gross_v": "false", "Heated_vol": 1668.8, "Ridge_mean": 15.3, "Eaves_mean": 9.88, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.427, "Heated_are": 534.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 42.3, "Total_Year": 31053.0, "January_He": 5591.0, "February_H": 3914.0, "March_Heat": 2371.0, "April_Heat": 428.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 1193.0, "November_H": 3582.0, "December_H": 5450.0, "PV_potenti": 10.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213381449006233, 48.790539094368377, 0.0 ], [ 9.213323131859173, 48.790555028965592, 0.0 ], [ 9.213256114955829, 48.790573407581483, 0.0 ], [ 9.213181300686871, 48.790453857756063, 0.0 ], [ 9.21324777384678, 48.79043566003741, 0.0 ], [ 9.213307722095534, 48.790419272838676, 0.0 ], [ 9.213381449006233, 48.790539094368377, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000266cd", "Latitude": 48.78955, "Longitude": 9.20682, "X_coordina": 3515268.96, "Y_coordina": 5405807.46, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 949.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 177.5, "Total_wall": 766.2, "Total_wa00": 0.0, "Total_outw": 1017.2, "Total_shar": 0.0, "Total_roof": 266.4, "Gross_volu": 3011.4, "Is_Gross_v": "false", "Heated_vol": 2967.8, "Ridge_mean": 17.7, "Eaves_mean": 14.54, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 15, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.406, "Heated_are": 949.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.0, "Total_Year": 53041.0, "January_He": 9334.0, "February_H": 6538.0, "March_Heat": 4107.0, "April_Heat": 938.0, "May_Heatin": 33.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 104.0, "October_He": 1933.0, "November_H": 5855.0, "December_H": 9156.0, "PV_potenti": 10.58 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206662059439697, 48.78961641272641, 0.0 ], [ 9.20668380580446, 48.789510083961183, 0.0 ], [ 9.20688461590386, 48.789528157725165, 0.0 ], [ 9.206862597403047, 48.789634397093216, 0.0 ], [ 9.206662059439697, 48.78961641272641, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000266c9", "Latitude": 48.78961, "Longitude": 9.20655, "X_coordina": 3515249.11, "Y_coordina": 5405813.63, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 412.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 120.7, "Total_wall": 417.2, "Total_wa00": 0.0, "Total_outw": 550.7, "Total_shar": 0.0, "Total_roof": 187.4, "Gross_volu": 1323.5, "Is_Gross_v": "false", "Heated_vol": 1287.7, "Ridge_mean": 13.8, "Eaves_mean": 5.94, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.557, "Heated_are": 412.1, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 45.4, "Total_Year": 25227.0, "January_He": 4666.0, "February_H": 3223.0, "March_Heat": 1920.0, "April_Heat": 377.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 926.0, "November_H": 2930.0, "December_H": 4600.0, "PV_potenti": 8.66 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206515551637738, 48.789565598927453, 0.0 ], [ 9.20652943773916, 48.789566743031891, 0.0 ], [ 9.20658933928531, 48.789571851158357, 0.0 ], [ 9.20656572137085, 48.789686456236019, 0.0 ], [ 9.206556892767667, 48.789690698482687, 0.0 ], [ 9.206504884761664, 48.789685666108575, 0.0 ], [ 9.206472209510382, 48.789682487446711, 0.0 ], [ 9.206435313950502, 48.789678956646469, 0.0 ], [ 9.206441442470645, 48.789646842922814, 0.0 ], [ 9.206417293797454, 48.789632138734554, 0.0 ], [ 9.206515551637738, 48.789565598927453, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000266ca", "Latitude": 48.78974, "Longitude": 9.20636, "X_coordina": 3515235.45, "Y_coordina": 5405827.84, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 332.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 108.2, "Total_wall": 286.5, "Total_wa00": 0.0, "Total_outw": 461.3, "Total_shar": 100.9, "Total_roof": 109.1, "Gross_volu": 995.1, "Is_Gross_v": "false", "Heated_vol": 1039.9, "Ridge_mean": 9.8, "Eaves_mean": 8.63, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.54, "Heated_are": 332.8, "Mean_Uvalu": 0.49, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206314149672286, 48.789701924462044, 0.0 ], [ 9.206333014049241, 48.789689121507934, 0.0 ], [ 9.206415288964116, 48.789740590230707, 0.0 ], [ 9.206419518502866, 48.78974319043482, 0.0 ], [ 9.206300766716703, 48.789823525189099, 0.0 ], [ 9.206216566231644, 48.789767114033658, 0.0 ], [ 9.206270719045939, 48.789730957672198, 0.0 ], [ 9.206314149672286, 48.789701924462044, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00026684", "Latitude": 48.79169, "Longitude": 9.21451, "X_coordina": 3515833.64, "Y_coordina": 5406047.38, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 5955.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1053.0, "Total_wall": 3066.5, "Total_wa00": 0.0, "Total_outw": 4033.0, "Total_shar": 203.0, "Total_roof": 1124.4, "Gross_volu": 19113.9, "Is_Gross_v": "false", "Heated_vol": 18609.7, "Ridge_mean": 21.3, "Eaves_mean": 14.09, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.279, "Heated_are": 5955.1, "Mean_Uvalu": 0.39, "Specific_d": "24,8", "Specific_s": 34.6, "Total_Year": 353870.0, "January_He": 47300.0, "February_H": 34852.0, "March_Heat": 24136.0, "April_Heat": 7396.0, "May_Heatin": 576.0, "June_Heati": 19, "July_Heati": 3, "August_Hea": 6, "September_": 1501.0, "October_He": 12928.0, "November_H": 31165.0, "December_H": 46064.0, "PV_potenti": 59.13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214775222414554, 48.791597512171847, 0.0 ], [ 9.214763881249482, 48.791618845216746, 0.0 ], [ 9.214727461821484, 48.791631682280467, 0.0 ], [ 9.214649284335444, 48.791777774029583, 0.0 ], [ 9.214478361394546, 48.79200514957482, 0.0 ], [ 9.214356108588158, 48.791964731725514, 0.0 ], [ 9.214287690699324, 48.791942108382692, 0.0 ], [ 9.214291209324019, 48.791937425808179, 0.0 ], [ 9.21445400462037, 48.791718878186529, 0.0 ], [ 9.214512320513219, 48.791606634841912, 0.0 ], [ 9.214157920561268, 48.791510356785672, 0.0 ], [ 9.214210913604528, 48.791426449424563, 0.0 ], [ 9.214607820021067, 48.791533169177548, 0.0 ], [ 9.214586362820846, 48.791575922874458, 0.0 ], [ 9.214708965606432, 48.791602851288808, 0.0 ], [ 9.214743344336586, 48.791590197883394, 0.0 ], [ 9.214775222414554, 48.791597512171847, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00026686", "Latitude": 48.79193, "Longitude": 9.21416, "X_coordina": 3515807.94, "Y_coordina": 5406073.79, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3210, "PrimaryUsa": "sport location", "PrimaryU00": 1211.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 415.8, "Total_wall": 569.4, "Total_wa00": 0.0, "Total_outw": 964.0, "Total_shar": 277.7, "Total_roof": 444.8, "Gross_volu": 4202.4, "Is_Gross_v": "false", "Heated_vol": 3786.6, "Ridge_mean": 11.4, "Eaves_mean": 8.83, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.357, "Heated_are": 1211.7, "Mean_Uvalu": 0.46, "Specific_d": "124,1", "Specific_s": 121.8, "Total_Year": 297944.99999999994, "January_He": 32474.0, "February_H": 25044.0, "March_Heat": 18799.0, "April_Heat": 8085.0, "May_Heatin": 1286.0, "June_Heati": 18, "July_Heati": 0, "August_Hea": 0, "September_": 1753.0, "October_He": 8737.0, "November_H": 20519.0, "December_H": 30833.0, "PV_potenti": 22.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213947985409769, 48.791845352724401, 0.0 ], [ 9.214291209324019, 48.791937425808179, 0.0 ], [ 9.214287690699324, 48.791942108382692, 0.0 ], [ 9.214356108588158, 48.791964731725514, 0.0 ], [ 9.214285616037531, 48.792062160248278, 0.0 ], [ 9.21423901619546, 48.792049477797065, 0.0 ], [ 9.213959690977186, 48.791973651955622, 0.0 ], [ 9.213881071284465, 48.791952306255254, 0.0 ], [ 9.213947985409769, 48.791845352724401, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00026687", "Latitude": 48.79201, "Longitude": 9.21413, "X_coordina": 3515805.58, "Y_coordina": 5406082.5, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3210, "PrimaryUsa": "sport location", "PrimaryU00": 174.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 109.1, "Total_wall": 160.2, "Total_wa00": 0.0, "Total_outw": 279.4, "Total_shar": 193.5, "Total_roof": 109.1, "Gross_volu": 616.8, "Is_Gross_v": "false", "Heated_vol": 545.2, "Ridge_mean": 5.7, "Eaves_mean": 5.66, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.648, "Heated_are": 174.5, "Mean_Uvalu": 0.44, "Specific_d": "124,1", "Specific_s": 138.0, "Total_Year": 45736.0, "January_He": 5337.0, "February_H": 4117.0, "March_Heat": 3048.0, "April_Heat": 1244.0, "May_Heatin": 173.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 258.0, "October_He": 1420.0, "November_H": 3414.0, "December_H": 5068.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214213876927859, 48.792090619645698, 0.0 ], [ 9.21393441350963, 48.792014344382594, 0.0 ], [ 9.213959690977186, 48.791973651955622, 0.0 ], [ 9.21423901619546, 48.792049477797065, 0.0 ], [ 9.214213876927859, 48.792090619645698, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522A00c142f4", "Latitude": 48.79159, "Longitude": 9.21443, "X_coordina": 3515827.93, "Y_coordina": 5406035.25, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 7.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 4.8, "Total_wall": 164.1, "Total_wa00": 0.0, "Total_outw": 172.7, "Total_shar": 60.6, "Total_roof": 114.8, "Gross_volu": 27.9, "Is_Gross_v": "true", "Heated_vol": 24.4, "Ridge_mean": 5.9, "Eaves_mean": 5.85, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 10.46, "Heated_are": 7.8, "Mean_Uvalu": 1.33, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21433574630994, 48.791621863905604, 0.0 ], [ 9.214333858218328, 48.791621350979376, 0.0 ], [ 9.214334634528095, 48.79162010346316, 0.0 ], [ 9.214336522619661, 48.791620616389395, 0.0 ], [ 9.21433574630994, 48.791621863905604, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522A00c142f4", "Latitude": 48.79159, "Longitude": 9.21443, "X_coordina": 3515827.93, "Y_coordina": 5406035.25, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 7.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 4.8, "Total_wall": 164.1, "Total_wa00": 0.0, "Total_outw": 172.7, "Total_shar": 60.6, "Total_roof": 114.8, "Gross_volu": 27.9, "Is_Gross_v": "true", "Heated_vol": 24.4, "Ridge_mean": 5.9, "Eaves_mean": 5.85, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 10.46, "Heated_are": 7.8, "Mean_Uvalu": 1.33, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214403717660822, 48.791640329292555, 0.0 ], [ 9.21440449396915, 48.79163908177587, 0.0 ], [ 9.214406382062137, 48.791639594700946, 0.0 ], [ 9.21440560575385, 48.791640842217653, 0.0 ], [ 9.214403717660822, 48.791640329292555, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522A00c142f4", "Latitude": 48.79159, "Longitude": 9.21443, "X_coordina": 3515827.93, "Y_coordina": 5406035.25, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 7.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 4.8, "Total_wall": 164.1, "Total_wa00": 0.0, "Total_outw": 172.7, "Total_shar": 60.6, "Total_roof": 114.8, "Gross_volu": 27.9, "Is_Gross_v": "true", "Heated_vol": 24.4, "Ridge_mean": 5.9, "Eaves_mean": 5.85, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 10.46, "Heated_are": 7.8, "Mean_Uvalu": 1.33, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21447361838923, 48.791661749451855, 0.0 ], [ 9.214503498281585, 48.791604238165675, 0.0 ], [ 9.214512320513219, 48.791606634841912, 0.0 ], [ 9.214482440629496, 48.791664146121327, 0.0 ], [ 9.21447361838923, 48.791661749451855, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522A00c14303", "Latitude": 48.79154, "Longitude": 9.21426, "X_coordina": 3515815.11, "Y_coordina": 5406029.86, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 114.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 73.9, "Total_wall": 119.6, "Total_wa00": 0.0, "Total_outw": 135.9, "Total_shar": 65.9, "Total_roof": 73.9, "Gross_volu": 373.8, "Is_Gross_v": "false", "Heated_vol": 356.6, "Ridge_mean": 5.2, "Eaves_mean": 5.23, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.73, "Heated_are": 114.1, "Mean_Uvalu": 0.35, "Specific_d": "24,8", "Specific_s": 63.7, "Total_Year": 10102.0, "January_He": 1539.0, "February_H": 1184.0, "March_Heat": 892.0, "April_Heat": 362.0, "May_Heatin": 58.0, "June_Heati": 3, "July_Heati": 1, "August_Hea": 1, "September_": 116.0, "October_He": 535.0, "November_H": 1081.0, "December_H": 1496.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214162955456469, 48.791511724602643, 0.0 ], [ 9.214300785872863, 48.791549168459383, 0.0 ], [ 9.21426585178434, 48.791605306701626, 0.0 ], [ 9.214128021253579, 48.791567862794672, 0.0 ], [ 9.214162955456469, 48.791511724602643, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000263f2", "Latitude": 48.79073, "Longitude": 9.21137, "X_coordina": 3515603.06, "Y_coordina": 5405939.37, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 466.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 127.5, "Total_wall": 358.2, "Total_wa00": 0.0, "Total_outw": 554.7, "Total_shar": 120.6, "Total_roof": 193.0, "Gross_volu": 1584.5, "Is_Gross_v": "false", "Heated_vol": 1456.9, "Ridge_mean": 15.0, "Eaves_mean": 10.08, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.453, "Heated_are": 466.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 40.5, "Total_Year": 26275.0, "January_He": 4782.0, "February_H": 3258.0, "March_Heat": 1889.0, "April_Heat": 340.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 899.0, "November_H": 2958.0, "December_H": 4717.0, "PV_potenti": 9.68 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211348421547282, 48.790820617447025, 0.0 ], [ 9.211321173936204, 48.790813833254681, 0.0 ], [ 9.211321714915924, 48.790813022949415, 0.0 ], [ 9.211291740513804, 48.790805074746721, 0.0 ], [ 9.21125958634412, 48.790796590993232, 0.0 ], [ 9.211230974416118, 48.79078899996977, 0.0 ], [ 9.21123205751025, 48.790787649128866, 0.0 ], [ 9.211297197818558, 48.790678632126287, 0.0 ], [ 9.211419272694073, 48.790710420888111, 0.0 ], [ 9.211352372443942, 48.79082159935593, 0.0 ], [ 9.211348421547282, 48.790820617447025, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00026328", "Latitude": 48.7885, "Longitude": 9.20253, "X_coordina": 3514953.95, "Y_coordina": 5405689.81, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 84.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.2, "Total_wall": 96.6, "Total_wa00": 0.0, "Total_outw": 179.2, "Total_shar": 50.7, "Total_roof": 46.2, "Gross_volu": 209.4, "Is_Gross_v": "false", "Heated_vol": 209.4, "Ridge_mean": 4.5, "Eaves_mean": 4.53, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.903, "Heated_are": 84.1, "Mean_Uvalu": 0.44, "Specific_d": "73,0", "Specific_s": 59.9, "Total_Year": 11179.0, "January_He": 1229.0, "February_H": 858.0, "March_Heat": 528.0, "April_Heat": 128.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 277.0, "November_H": 780.0, "December_H": 1200.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202541618251672, 48.788541052844444, 0.0 ], [ 9.202467136547304, 48.788564743817041, 0.0 ], [ 9.20242238964409, 48.78850367439842, 0.0 ], [ 9.202496459034407, 48.788478995019339, 0.0 ], [ 9.202541618251672, 48.788541052844444, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00026193", "Latitude": 48.7888, "Longitude": 9.21364, "X_coordina": 3515770.47, "Y_coordina": 5405725.83, "LOD": "LOD2", "Year_of_co": 1967, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 101.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.0, "Total_wall": 61.9, "Total_wa00": 0.0, "Total_outw": 132.4, "Total_shar": 218.2, "Total_roof": 56.5, "Gross_volu": 362.7, "Is_Gross_v": "false", "Heated_vol": 316.7, "Ridge_mean": 9.4, "Eaves_mean": 6.35, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.484, "Heated_are": 101.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 45.7, "Total_Year": 6239.0, "January_He": 1121.0, "February_H": 813.0, "March_Heat": 505.0, "April_Heat": 105.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 13.0, "October_He": 247.0, "November_H": 719.0, "December_H": 1107.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213625904305719, 48.788814625222201, 0.0 ], [ 9.213657883537389, 48.788846219020584, 0.0 ], [ 9.213586126512135, 48.788869462505282, 0.0 ], [ 9.213560129129609, 48.788836418815976, 0.0 ], [ 9.213532627552178, 48.788801669360353, 0.0 ], [ 9.213592695733229, 48.788781954611096, 0.0 ], [ 9.213625904305719, 48.788814625222201, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00025e5d", "Latitude": 48.78856, "Longitude": 9.21105, "X_coordina": 3515579.99, "Y_coordina": 5405697.67, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 100.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.2, "Total_wall": 62.4, "Total_wa00": 0.0, "Total_outw": 141.1, "Total_shar": 198.8, "Total_roof": 63.7, "Gross_volu": 361.6, "Is_Gross_v": "false", "Heated_vol": 315.3, "Ridge_mean": 9.6, "Eaves_mean": 6.04, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.511, "Heated_are": 100.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 45.6, "Total_Year": 6197.0, "January_He": 1175.0, "February_H": 791.0, "March_Heat": 437.0, "April_Heat": 66.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 220.0, "November_H": 746.0, "December_H": 1155.0, "PV_potenti": 1.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211001341813388, 48.7886048161552, 0.0 ], [ 9.210950444307272, 48.788604819476234, 0.0 ], [ 9.210950390807545, 48.788559587977211, 0.0 ], [ 9.210950757989151, 48.788549785626479, 0.0 ], [ 9.21100138326279, 48.788549782804097, 0.0 ], [ 9.211053505509081, 48.788549777216012, 0.0 ], [ 9.211053055850897, 48.788604811315246, 0.0 ], [ 9.211001341813388, 48.7886048161552, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000258b6", "Latitude": 48.79284, "Longitude": 9.20049, "X_coordina": 3514802.71, "Y_coordina": 5406171.42, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 683.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 153.9, "Total_wall": 562.1, "Total_wa00": 0.0, "Total_outw": 806.7, "Total_shar": 108.1, "Total_roof": 183.0, "Gross_volu": 2236.5, "Is_Gross_v": "false", "Heated_vol": 2135.7, "Ridge_mean": 16.4, "Eaves_mean": 13.26, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.415, "Heated_are": 683.4, "Mean_Uvalu": 0.45, "Specific_d": "14,6", "Specific_s": 58.7, "Total_Year": 50110.0, "January_He": 9184.0, "February_H": 6778.0, "March_Heat": 4716.0, "April_Heat": 1568.0, "May_Heatin": 165.0, "June_Heati": 6, "July_Heati": 0, "August_Hea": 1, "September_": 350.0, "October_He": 2482.0, "November_H": 5971.0, "December_H": 8904.0, "PV_potenti": 7.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20042538096984, 48.792937344318432, 0.0 ], [ 9.200366175188901, 48.792902736845122, 0.0 ], [ 9.200321021102422, 48.792876467791721, 0.0 ], [ 9.200338119248253, 48.792863758822229, 0.0 ], [ 9.200377064336147, 48.792834645745657, 0.0 ], [ 9.20045685511907, 48.792775247237557, 0.0 ], [ 9.20056121529859, 48.792836213565359, 0.0 ], [ 9.20042538096984, 48.792937344318432, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000258bb", "Latitude": 48.79249, "Longitude": 9.20023, "X_coordina": 3514784.21, "Y_coordina": 5406132.4, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 45.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 25.0, "Total_wall": 44.0, "Total_wa00": 0.0, "Total_outw": 83.4, "Total_shar": 88.3, "Total_roof": 25.0, "Gross_volu": 112.8, "Is_Gross_v": "false", "Heated_vol": 112.8, "Ridge_mean": 4.5, "Eaves_mean": 4.53, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.834, "Heated_are": 45.3, "Mean_Uvalu": 0.42, "Specific_d": "14,6", "Specific_s": 54.1, "Total_Year": 3115.0, "January_He": 598.0, "February_H": 411.0, "March_Heat": 263.0, "April_Heat": 75.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 132.0, "November_H": 365.0, "December_H": 587.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20019119302915, 48.792537501794925, 0.0 ], [ 9.200187646219103, 48.792535439718179, 0.0 ], [ 9.200139628033808, 48.792507556946362, 0.0 ], [ 9.200184816708324, 48.792474206672878, 0.0 ], [ 9.200236109140008, 48.792504062051755, 0.0 ], [ 9.200202727480832, 48.792528939001734, 0.0 ], [ 9.20019119302915, 48.792537501794925, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000258bc", "Latitude": 48.79255, "Longitude": 9.20033, "X_coordina": 3514791.03, "Y_coordina": 5406140.07, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 232.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 115.1, "Total_wall": 217.8, "Total_wa00": 0.0, "Total_outw": 428.9, "Total_shar": 45.8, "Total_roof": 118.2, "Gross_volu": 701.0, "Is_Gross_v": "false", "Heated_vol": 726.3, "Ridge_mean": 6.5, "Eaves_mean": 5.65, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.682, "Heated_are": 232.4, "Mean_Uvalu": 0.34, "Specific_d": "non calculated", "Specific_s": 68.3, "Total_Year": 15881.0, "January_He": 3276.0, "February_H": 2485.0, "March_Heat": 1916.0, "April_Heat": 812.0, "May_Heatin": 114.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 325.0, "October_He": 1342.0, "November_H": 2380.0, "December_H": 3226.0, "PV_potenti": 5.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200236109140008, 48.792504062051755, 0.0 ], [ 9.20039585232675, 48.792596945015582, 0.0 ], [ 9.200360293808897, 48.792622005646102, 0.0 ], [ 9.200327313987952, 48.792645263307953, 0.0 ], [ 9.200166069746203, 48.792551393699576, 0.0 ], [ 9.200187646219103, 48.792535439718179, 0.0 ], [ 9.20019119302915, 48.792537501794925, 0.0 ], [ 9.200202727480832, 48.792528939001734, 0.0 ], [ 9.200236109140008, 48.792504062051755, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00025607", "Latitude": 48.7901, "Longitude": 9.2135, "X_coordina": 3515760.04, "Y_coordina": 5405870.14, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 572.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 149.0, "Total_wall": 278.0, "Total_wa00": 0.0, "Total_outw": 457.5, "Total_shar": 380.9, "Total_roof": 197.9, "Gross_volu": 1938.0, "Is_Gross_v": "false", "Heated_vol": 1789.0, "Ridge_mean": 15.3, "Eaves_mean": 10.7, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.337, "Heated_are": 572.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 34.4, "Total_Year": 28780.0, "January_He": 4944.0, "February_H": 3431.0, "March_Heat": 2053.0, "April_Heat": 349.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 34.0, "October_He": 976.0, "November_H": 3106.0, "December_H": 4813.0, "PV_potenti": 8.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213560461054621, 48.790165399650917, 0.0 ], [ 9.213492896951736, 48.790182970107914, 0.0 ], [ 9.213426828297752, 48.790200178059273, 0.0 ], [ 9.213357190654106, 48.790081787753671, 0.0 ], [ 9.213423531743203, 48.790064669260616, 0.0 ], [ 9.213491096093327, 48.790047188767069, 0.0 ], [ 9.213560461054621, 48.790165399650917, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002558e", "Latitude": 48.79481, "Longitude": 9.20779, "X_coordina": 3515339.05, "Y_coordina": 5406391.88, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1374.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 249.7, "Total_wall": 1060.7, "Total_wa00": 0.0, "Total_outw": 1358.7, "Total_shar": 231.7, "Total_roof": 249.8, "Gross_volu": 4294.7, "Is_Gross_v": "false", "Heated_vol": 4294.7, "Ridge_mean": 18.2, "Eaves_mean": 18.21, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 22, "Number_o00": 34, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.363, "Heated_are": 1374.3, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 30.8, "Total_Year": 64157.0, "January_He": 10683.0, "February_H": 7425.0, "March_Heat": 4451.0, "April_Heat": 798.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 64.0, "October_He": 1955.0, "November_H": 6546.0, "December_H": 10451.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20770139892416, 48.794760780296443, 0.0 ], [ 9.207715393131119, 48.794721818156475, 0.0 ], [ 9.207721658051076, 48.794722796015364, 0.0 ], [ 9.207791117349981, 48.79473373130412, 0.0 ], [ 9.207793943250202, 48.794725902855816, 0.0 ], [ 9.207855502896527, 48.794735503506168, 0.0 ], [ 9.207820383909143, 48.794833493638706, 0.0 ], [ 9.207836318645912, 48.794835982741091, 0.0 ], [ 9.207821249027504, 48.794878184083615, 0.0 ], [ 9.207805314278119, 48.794875694979197, 0.0 ], [ 9.207785938258573, 48.794929773996458, 0.0 ], [ 9.207648654275163, 48.794908350041879, 0.0 ], [ 9.207661841950776, 48.794871817299637, 0.0 ], [ 9.207641957924048, 48.794868795752706, 0.0 ], [ 9.207681651044179, 48.794757758510769, 0.0 ], [ 9.20770139892416, 48.794760780296443, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00025113", "Latitude": 48.79253, "Longitude": 9.20208, "X_coordina": 3514920.08, "Y_coordina": 5406138.19, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 415.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 127.7, "Total_wall": 454.6, "Total_wa00": 0.0, "Total_outw": 691.6, "Total_shar": 87.3, "Total_roof": 127.7, "Gross_volu": 1425.7, "Is_Gross_v": "false", "Heated_vol": 1298.0, "Ridge_mean": 11.9, "Eaves_mean": 11.93, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 7, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.53, "Heated_are": 415.4, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 40.0, "Total_Year": 23195.0, "January_He": 4109.0, "February_H": 2868.0, "March_Heat": 1772.0, "April_Heat": 367.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 854.0, "November_H": 2563.0, "December_H": 4027.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20208460523417, 48.79253392492658, 0.0 ], [ 9.202111337330527, 48.792514094823147, 0.0 ], [ 9.202155673621114, 48.792539914994457, 0.0 ], [ 9.20212853286932, 48.79255965590179, 0.0 ], [ 9.202068687113261, 48.792603104098703, 0.0 ], [ 9.202054500632757, 48.792595125791692, 0.0 ], [ 9.202022607882146, 48.792617752566372, 0.0 ], [ 9.201924524281528, 48.792561092886167, 0.0 ], [ 9.201918793314363, 48.792557416067915, 0.0 ], [ 9.20192137018066, 48.79255516345988, 0.0 ], [ 9.201920140956538, 48.792554086532164, 0.0 ], [ 9.201951347442312, 48.792530022211665, 0.0 ], [ 9.20194602513539, 48.79252643460169, 0.0 ], [ 9.201948058323673, 48.792524362793621, 0.0 ], [ 9.201945465581048, 48.792522658792215, 0.0 ], [ 9.20197016129152, 48.792504091222803, 0.0 ], [ 9.201984350620666, 48.79251278892405, 0.0 ], [ 9.202012574782072, 48.792491697296128, 0.0 ], [ 9.20208460523417, 48.79253392492658, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000250ba", "Latitude": 48.78864, "Longitude": 9.21154, "X_coordina": 3515616.16, "Y_coordina": 5405707.47, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 131.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 46.9, "Total_wall": 85.2, "Total_wa00": 0.0, "Total_outw": 164.7, "Total_shar": 234.6, "Total_roof": 64.7, "Gross_volu": 441.4, "Is_Gross_v": "false", "Heated_vol": 412.3, "Ridge_mean": 11.2, "Eaves_mean": 7.58, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.463, "Heated_are": 131.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.3, "Total_Year": 8065.0, "January_He": 1466.0, "February_H": 1033.0, "March_Heat": 631.0, "April_Heat": 123.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 324.0, "November_H": 948.0, "December_H": 1430.0, "PV_potenti": 1.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211498476739322, 48.788637086045, 0.0 ], [ 9.211550613438691, 48.788640497304293, 0.0 ], [ 9.211542542215312, 48.788695275634218, 0.0 ], [ 9.211490268993069, 48.788691774698357, 0.0 ], [ 9.211438540511006, 48.788688362662299, 0.0 ], [ 9.211446748312895, 48.788633674012495, 0.0 ], [ 9.211498476739322, 48.788637086045, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002505c", "Latitude": 48.78829, "Longitude": 9.21078, "X_coordina": 3515560.79, "Y_coordina": 5405668.31, "LOD": "LOD2", "Year_of_co": 1946, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 115.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 58.2, "Total_wall": 109.7, "Total_wa00": 0.0, "Total_outw": 190.2, "Total_shar": 115.0, "Total_roof": 88.7, "Gross_volu": 464.6, "Is_Gross_v": "false", "Heated_vol": 406.4, "Ridge_mean": 10.3, "Eaves_mean": 5.67, "Storey_num": 3, "Average_St": 3.1, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.594, "Heated_are": 115.4, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 59.8, "Total_Year": 8727.0, "January_He": 1671.0, "February_H": 1166.0, "March_Heat": 750.0, "April_Heat": 201.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 28.0, "October_He": 359.0, "November_H": 1051.0, "December_H": 1661.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210689636458863, 48.788332018941794, 0.0 ], [ 9.210690919510551, 48.788277342112089, 0.0 ], [ 9.210790129620264, 48.788278330467605, 0.0 ], [ 9.210788529034625, 48.788350096071945, 0.0 ], [ 9.210689297005748, 48.788349106855925, 0.0 ], [ 9.210689636458863, 48.788332018941794, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002505d", "Latitude": 48.78828, "Longitude": 9.21072, "X_coordina": 3515555.8, "Y_coordina": 5405667.27, "LOD": "LOD2", "Year_of_co": 1971, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 24.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 16.7, "Total_wall": 19.1, "Total_wa00": 0.0, "Total_outw": 24.9, "Total_shar": 46.4, "Total_roof": 17.3, "Gross_volu": 67.0, "Is_Gross_v": "false", "Heated_vol": 77.5, "Ridge_mean": 4.4, "Eaves_mean": 3.67, "Storey_num": 1, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.878, "Heated_are": 24.8, "Mean_Uvalu": 0.48, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 0.96 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210652469689901, 48.788324977569118, 0.0 ], [ 9.210653758908895, 48.788276966769168, 0.0 ], [ 9.210690919510551, 48.788277342112089, 0.0 ], [ 9.210689636458863, 48.788332018941794, 0.0 ], [ 9.210652347252308, 48.788331815587881, 0.0 ], [ 9.210652469689901, 48.788324977569118, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024f14", "Latitude": 48.7919, "Longitude": 9.20241, "X_coordina": 3514944.1, "Y_coordina": 5406068.06, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 681.5, "SecondaryU": "retail", "Secondar00": 99.5, "BuildingTy": "GMH", "Footprint_": 124.3, "Total_wall": 730.6, "Total_wa00": 0.0, "Total_outw": 934.3, "Total_shar": 120.2, "Total_roof": 195.6, "Gross_volu": 2464.9, "Is_Gross_v": "false", "Heated_vol": 2440.5, "Ridge_mean": 22.2, "Eaves_mean": 17.36, "Storey_num": 8, "Average_St": 2.8, "Number_of_": 13, "Number_o00": 26, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.429, "Heated_are": 781.0, "Mean_Uvalu": 0.5, "Specific_d": "23,1", "Specific_s": 41.6, "Total_Year": 50513.0, "January_He": 8055.0, "February_H": 5625.0, "March_Heat": 3407.0, "April_Heat": 672.0, "May_Heatin": 24.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 84.0, "October_He": 1635.0, "November_H": 5042.0, "December_H": 7912.0, "PV_potenti": 7.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202352307030388, 48.791990586108312, 0.0 ], [ 9.202344029652703, 48.791996715457422, 0.0 ], [ 9.202253036993286, 48.791943280840584, 0.0 ], [ 9.202277462641778, 48.791925343142921, 0.0 ], [ 9.202297274330997, 48.791910740718578, 0.0 ], [ 9.202379506798408, 48.791850257496932, 0.0 ], [ 9.202424797855276, 48.791876705354916, 0.0 ], [ 9.202470361878472, 48.791903332562264, 0.0 ], [ 9.202439152772666, 48.791926587718208, 0.0 ], [ 9.202409571022997, 48.791948401227693, 0.0 ], [ 9.202352307030388, 48.791990586108312, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024f16", "Latitude": 48.79197, "Longitude": 9.20246, "X_coordina": 3514948.42, "Y_coordina": 5406075.75, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 28.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 35.0, "Total_wall": 43.7, "Total_wa00": 0.0, "Total_outw": 135.4, "Total_shar": 48.2, "Total_roof": 35.0, "Gross_volu": 95.9, "Is_Gross_v": "false", "Heated_vol": 87.6, "Ridge_mean": 2.7, "Eaves_mean": 2.74, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.23, "Heated_are": 28.0, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202364038925323, 48.79199739968616, 0.0 ], [ 9.202420212325515, 48.791954767098758, 0.0 ], [ 9.202477370418203, 48.791987758498202, 0.0 ], [ 9.202421060570133, 48.792030301429456, 0.0 ], [ 9.202364038925323, 48.79199739968616, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024f06", "Latitude": 48.78867, "Longitude": 9.21105, "X_coordina": 3515579.88, "Y_coordina": 5405709.93, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 99.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.2, "Total_wall": 117.1, "Total_wa00": 0.0, "Total_outw": 241.1, "Total_shar": 99.9, "Total_roof": 63.7, "Gross_volu": 355.6, "Is_Gross_v": "false", "Heated_vol": 309.4, "Ridge_mean": 9.5, "Eaves_mean": 5.9, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.691, "Heated_are": 99.0, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 62.5, "Total_Year": 7755.0, "January_He": 1551.0, "February_H": 1058.0, "March_Heat": 609.0, "April_Heat": 111.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 17.0, "October_He": 312.0, "November_H": 1001.0, "December_H": 1525.0, "PV_potenti": 1.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211001164275361, 48.788659849755092, 0.0 ], [ 9.211052470103191, 48.788659845663368, 0.0 ], [ 9.211051749773921, 48.788715239952175, 0.0 ], [ 9.211001123957047, 48.788715152874026, 0.0 ], [ 9.210949545518126, 48.788715067518616, 0.0 ], [ 9.210949807142244, 48.788712549177177, 0.0 ], [ 9.210950037881451, 48.788670194715174, 0.0 ], [ 9.210950130624905, 48.788659853325441, 0.0 ], [ 9.211001164275361, 48.788659849755092, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024f08", "Latitude": 48.78866, "Longitude": 9.21087, "X_coordina": 3515566.71, "Y_coordina": 5405709.55, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 40.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 43.3, "Total_wall": 52.7, "Total_wa00": 0.0, "Total_outw": 193.6, "Total_shar": 0.0, "Total_roof": 43.3, "Gross_volu": 86.8, "Is_Gross_v": "false", "Heated_vol": 86.8, "Ridge_mean": 2.0, "Eaves_mean": 2.0, "Storey_num": 1, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.604, "Heated_are": 40.0, "Mean_Uvalu": 0.33, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210776161129598, 48.788713676440885, 0.0 ], [ 9.210771846855653, 48.78865838129208, 0.0 ], [ 9.210867504420259, 48.788655148772122, 0.0 ], [ 9.210871546621178, 48.788710444415585, 0.0 ], [ 9.210776161129598, 48.788713676440885, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024d1e", "Latitude": 48.79061, "Longitude": 9.213, "X_coordina": 3515723.22, "Y_coordina": 5405926.79, "LOD": "LOD2", "Year_of_co": 1927, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 454.0, "SecondaryU": "retail", "Secondar00": 130.9, "BuildingTy": "MFH", "Footprint_": 163.6, "Total_wall": 432.5, "Total_wa00": 0.0, "Total_outw": 685.4, "Total_shar": 93.8, "Total_roof": 235.8, "Gross_volu": 1890.6, "Is_Gross_v": "false", "Heated_vol": 1827.7, "Ridge_mean": 14.4, "Eaves_mean": 8.76, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 21, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.449, "Heated_are": 584.9, "Mean_Uvalu": 0.49, "Specific_d": "28,6", "Specific_s": 44.0, "Total_Year": 42505.0, "January_He": 6208.0, "February_H": 4409.0, "March_Heat": 2886.0, "April_Heat": 753.0, "May_Heatin": 37.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 99.0, "October_He": 1352.0, "November_H": 3908.0, "December_H": 6106.0, "PV_potenti": 10.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213065774439748, 48.790586708896392, 0.0 ], [ 9.213065825278804, 48.790630861300194, 0.0 ], [ 9.213061742457704, 48.790630868853903, 0.0 ], [ 9.213062637650472, 48.790681584119469, 0.0 ], [ 9.213059915766991, 48.790681589155213, 0.0 ], [ 9.212854414703482, 48.790682238937713, 0.0 ], [ 9.212853872404777, 48.790586201513399, 0.0 ], [ 9.213065774439748, 48.790586708896392, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024d1a", "Latitude": 48.7905, "Longitude": 9.21308, "X_coordina": 3515728.7, "Y_coordina": 5405914.17, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 19.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 23.8, "Total_wall": 35.4, "Total_wa00": 0.0, "Total_outw": 109.5, "Total_shar": 52.8, "Total_roof": 23.8, "Gross_volu": 69.7, "Is_Gross_v": "true", "Heated_vol": 61.7, "Ridge_mean": 2.9, "Eaves_mean": 2.88, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 1.258, "Heated_are": 19.8, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213085784001708, 48.790523275720879, 0.0 ], [ 9.212999734474462, 48.790546545278069, 0.0 ], [ 9.212982190401421, 48.790517262624846, 0.0 ], [ 9.213067424466988, 48.790494264360213, 0.0 ], [ 9.213085784001708, 48.790523275720879, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024b86", "Latitude": 48.79047, "Longitude": 9.21367, "X_coordina": 3515772.03, "Y_coordina": 5405910.92, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 538.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 149.1, "Total_wall": 254.8, "Total_wa00": 0.0, "Total_outw": 428.3, "Total_shar": 369.7, "Total_roof": 195.1, "Gross_volu": 1831.2, "Is_Gross_v": "false", "Heated_vol": 1682.2, "Ridge_mean": 14.5, "Eaves_mean": 10.03, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.342, "Heated_are": 538.3, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 36.6, "Total_Year": 28241.0, "January_He": 4848.0, "February_H": 3436.0, "March_Heat": 2127.0, "April_Heat": 404.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 1033.0, "November_H": 3106.0, "December_H": 4707.0, "PV_potenti": 8.96 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213539958971863, 48.79043332015015, 0.0 ], [ 9.213612878750011, 48.79042698018533, 0.0 ], [ 9.213682941692387, 48.790420915246088, 0.0 ], [ 9.213707153888745, 48.790546133924785, 0.0 ], [ 9.213637772389504, 48.790552467385325, 0.0 ], [ 9.213564445677832, 48.79055916781487, 0.0 ], [ 9.213539958971863, 48.79043332015015, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024adb", "Latitude": 48.79519, "Longitude": 9.21097, "X_coordina": 3515572.65, "Y_coordina": 5406435.63, "LOD": "LOD2", "Year_of_co": 1995, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1022, "PrimaryUsa": "health care", "PrimaryU00": 4366.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 899.3, "Total_wall": 2021.9, "Total_wa00": 0.0, "Total_outw": 4131.5, "Total_shar": 39.2, "Total_roof": 1314.9, "Gross_volu": 14545.5, "Is_Gross_v": "false", "Heated_vol": 13646.3, "Ridge_mean": 20.5, "Eaves_mean": 12.12, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.303, "Heated_are": 4366.8, "Mean_Uvalu": 0.44, "Specific_d": "155,5", "Specific_s": 110.8, "Total_Year": 1163119.0, "January_He": 98899.0, "February_H": 77625.0, "March_Heat": 61517.0, "April_Heat": 30172.0, "May_Heatin": 7472.0, "June_Heati": 693, "July_Heati": 119, "August_Hea": 208, "September_": 10255.0, "October_He": 34668.0, "November_H": 67466.0, "December_H": 94856.0, "PV_potenti": 64.83 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210907992494802, 48.794971398332279, 0.0 ], [ 9.210903257437911, 48.794978241193959, 0.0 ], [ 9.211163661554648, 48.795018229603855, 0.0 ], [ 9.211139182716046, 48.795087965238288, 0.0 ], [ 9.211137293456087, 48.795091835414745, 0.0 ], [ 9.211032829542555, 48.79507521118682, 0.0 ], [ 9.210886222314706, 48.795492635085942, 0.0 ], [ 9.210792930493028, 48.795478867736037, 0.0 ], [ 9.210696505998996, 48.795464566500783, 0.0 ], [ 9.21073133781711, 48.795364238015274, 0.0 ], [ 9.210860439504788, 48.794991538363305, 0.0 ], [ 9.210853766173473, 48.79499056142285, 0.0 ], [ 9.210843409318221, 48.794987522984322, 0.0 ], [ 9.21083467857501, 48.794982773020351, 0.0 ], [ 9.21082798376878, 48.794976670475251, 0.0 ], [ 9.210824007312127, 48.794969663717843, 0.0 ], [ 9.210822887193745, 48.794962202113545, 0.0 ], [ 9.210824761778802, 48.794954824950473, 0.0 ], [ 9.210829496844179, 48.794947982091976, 0.0 ], [ 9.210836685955723, 48.794942123899574, 0.0 ], [ 9.210845786951104, 48.794937790906715, 0.0 ], [ 9.210856392267251, 48.794935163706306, 0.0 ], [ 9.21086768602459, 48.794934423638956, 0.0 ], [ 9.21087898807278, 48.794935661873495, 0.0 ], [ 9.210889208813789, 48.794938700558099, 0.0 ], [ 9.210898075660193, 48.794943450268732, 0.0 ], [ 9.210904634364741, 48.794949553059055, 0.0 ], [ 9.210908610831009, 48.794956559813691, 0.0 ], [ 9.210909730961959, 48.79496402141713, 0.0 ], [ 9.210907992494802, 48.794971398332279, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024414", "Latitude": 48.78928, "Longitude": 9.21004, "X_coordina": 3515505.47, "Y_coordina": 5405778.15, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3023, "PrimaryUsa": "education", "PrimaryU00": 4154.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 927.0, "Total_wall": 2495.9, "Total_wa00": 0.0, "Total_outw": 3760.9, "Total_shar": 0.0, "Total_roof": 1472.1, "Gross_volu": 13909.4, "Is_Gross_v": "false", "Heated_vol": 12982.4, "Ridge_mean": 19.4, "Eaves_mean": 11.51, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.367, "Heated_are": 4154.4, "Mean_Uvalu": 0.45, "Specific_d": "24,8", "Specific_s": 42.4, "Total_Year": 279451.0, "January_He": 40204.0, "February_H": 29733.0, "March_Heat": 20462.0, "April_Heat": 6273.0, "May_Heatin": 581.0, "June_Heati": 25, "July_Heati": 4, "August_Hea": 9, "September_": 1424.0, "October_He": 11355.0, "November_H": 26707.0, "December_H": 39482.0, "PV_potenti": 60.65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209810052541085, 48.789267122201331, 0.0 ], [ 9.209968676425333, 48.7892204324977, 0.0 ], [ 9.209972754255608, 48.789219256055304, 0.0 ], [ 9.2099779579512, 48.789226980000485, 0.0 ], [ 9.210191764670439, 48.789163553484777, 0.0 ], [ 9.210183277886951, 48.789151788977343, 0.0 ], [ 9.210242540277518, 48.789134235613773, 0.0 ], [ 9.21030057894426, 48.7891169542253, 0.0 ], [ 9.210333446862693, 48.789166262279082, 0.0 ], [ 9.210457817008878, 48.78912961598278, 0.0 ], [ 9.210505888135874, 48.789202096502002, 0.0 ], [ 9.2103835558173, 48.789237929814114, 0.0 ], [ 9.210387116720094, 48.789243318727294, 0.0 ], [ 9.210330165533131, 48.789260328401838, 0.0 ], [ 9.210270087985435, 48.789278242993021, 0.0 ], [ 9.210244209119988, 48.789240522312504, 0.0 ], [ 9.210030675822775, 48.789304308120521, 0.0 ], [ 9.210063131574831, 48.789352717765091, 0.0 ], [ 9.210023305060766, 48.789364300631121, 0.0 ], [ 9.210030428309183, 48.789375438171255, 0.0 ], [ 9.209988970932427, 48.789387563541574, 0.0 ], [ 9.20994846542056, 48.789399507314322, 0.0 ], [ 9.20994107075566, 48.789388550111262, 0.0 ], [ 9.209901109219494, 48.78940040295204, 0.0 ], [ 9.209868928398322, 48.789352622226694, 0.0 ], [ 9.209655665955738, 48.789416316921269, 0.0 ], [ 9.209681274537781, 48.789454577766719, 0.0 ], [ 9.209624321374426, 48.789471227400824, 0.0 ], [ 9.209563426402815, 48.789489053187211, 0.0 ], [ 9.209475794804932, 48.789361071436431, 0.0 ], [ 9.209536145665167, 48.789343336609591, 0.0 ], [ 9.209594321281195, 48.789326145251962, 0.0 ], [ 9.209602539146289, 48.789338719604629, 0.0 ], [ 9.20981512050122, 48.78927493632473, 0.0 ], [ 9.209810052541085, 48.789267122201331, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024415", "Latitude": 48.78949, "Longitude": 9.21062, "X_coordina": 3515548.06, "Y_coordina": 5405801.15, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3023, "PrimaryUsa": "education", "PrimaryU00": 764.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 294.1, "Total_wall": 488.8, "Total_wa00": 0.0, "Total_outw": 847.1, "Total_shar": 0.0, "Total_roof": 297.1, "Gross_volu": 1973.0, "Is_Gross_v": "false", "Heated_vol": 1973.0, "Ridge_mean": 7.0, "Eaves_mean": 7.02, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.547, "Heated_are": 764.2, "Mean_Uvalu": 0.42, "Specific_d": "24,8", "Specific_s": 42.8, "Total_Year": 51686.0, "January_He": 7461.0, "February_H": 5473.0, "March_Heat": 3788.0, "April_Heat": 1185.0, "May_Heatin": 114.0, "June_Heati": 5, "July_Heati": 1, "August_Hea": 2, "September_": 281.0, "October_He": 2135.0, "November_H": 4960.0, "December_H": 7299.0, "PV_potenti": 9.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210428190539277, 48.789432443021283, 0.0 ], [ 9.210579471490636, 48.789387204673659, 0.0 ], [ 9.210714620943996, 48.789584699544434, 0.0 ], [ 9.210563339521977, 48.789629938068721, 0.0 ], [ 9.210428190539277, 48.789432443021283, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000243c1", "Latitude": 48.79221, "Longitude": 9.20016, "X_coordina": 3514779.14, "Y_coordina": 5406102.18, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 4064.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 748.4, "Total_wall": 2305.9, "Total_wa00": 0.0, "Total_outw": 3132.2, "Total_shar": 0.0, "Total_roof": 915.3, "Gross_volu": 13449.3, "Is_Gross_v": "false", "Heated_vol": 12700.8, "Ridge_mean": 20.1, "Eaves_mean": 16.08, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.307, "Heated_are": 4064.3, "Mean_Uvalu": 0.44, "Specific_d": "14,6", "Specific_s": 52.7, "Total_Year": 273412.0, "January_He": 48321.0, "February_H": 35956.0, "March_Heat": 25837.0, "April_Heat": 9394.0, "May_Heatin": 1114.0, "June_Heati": 37, "July_Heati": 4, "August_Hea": 8, "September_": 2046.0, "October_He": 13307.0, "November_H": 31304.0, "December_H": 46706.0, "PV_potenti": 48.62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200500366689507, 48.792389309372695, 0.0 ], [ 9.200396695116375, 48.792466824116374, 0.0 ], [ 9.19973520711523, 48.792079143727229, 0.0 ], [ 9.199839695499271, 48.792001628155944, 0.0 ], [ 9.200500366689507, 48.792389309372695, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000243c2", "Latitude": 48.79277, "Longitude": 9.1998, "X_coordina": 3514752.09, "Y_coordina": 5406164.3, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 310.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 287.3, "Total_wall": 159.0, "Total_wa00": 0.0, "Total_outw": 480.3, "Total_shar": 342.7, "Total_roof": 355.5, "Gross_volu": 1420.1, "Is_Gross_v": "false", "Heated_vol": 1132.8, "Ridge_mean": 7.4, "Eaves_mean": 3.7, "Storey_num": 2, "Average_St": 3.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.605, "Heated_are": 310.3, "Mean_Uvalu": 0.44, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 16.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19955530550466, 48.792667915598088, 0.0 ], [ 9.199587874188719, 48.792643849557606, 0.0 ], [ 9.199892762650464, 48.792821009731128, 0.0 ], [ 9.199896021192982, 48.792819025755961, 0.0 ], [ 9.199974734619166, 48.792865109815793, 0.0 ], [ 9.199868613594271, 48.792943167872899, 0.0 ], [ 9.199791536916521, 48.792897980137376, 0.0 ], [ 9.199832378107914, 48.792866436018663, 0.0 ], [ 9.199528843804808, 48.792687564792338, 0.0 ], [ 9.19955530550466, 48.792667915598088, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000243c3", "Latitude": 48.79244, "Longitude": 9.19973, "X_coordina": 3514747.0, "Y_coordina": 5406127.03, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 706.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 383.7, "Total_wall": 389.6, "Total_wa00": 0.0, "Total_outw": 801.7, "Total_shar": 0.0, "Total_roof": 391.5, "Gross_volu": 1775.7, "Is_Gross_v": "false", "Heated_vol": 1555.1, "Ridge_mean": 5.2, "Eaves_mean": 4.05, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.656, "Heated_are": 706.2, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 2.4, "Total_Year": 24923.0, "January_He": 707.0, "February_H": 238.0, "March_Heat": 31.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 1.0, "November_H": 99.0, "December_H": 642.0, "PV_potenti": 22.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199554738058122, 48.792318923132591, 0.0 ], [ 9.19990777283579, 48.79252252729227, 0.0 ], [ 9.199857159246765, 48.792560742745742, 0.0 ], [ 9.199807902647835, 48.792597966662768, 0.0 ], [ 9.199454867386766, 48.792394272277065, 0.0 ], [ 9.199502631596163, 48.792358220101789, 0.0 ], [ 9.199554738058122, 48.792318923132591, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000243c5", "Latitude": 48.79278, "Longitude": 9.1997, "X_coordina": 3514744.85, "Y_coordina": 5406164.7, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 143.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 179.1, "Total_wall": 93.3, "Total_wa00": 0.0, "Total_outw": 309.7, "Total_shar": 286.4, "Total_roof": 179.1, "Gross_volu": 505.7, "Is_Gross_v": "false", "Heated_vol": 447.6, "Ridge_mean": 2.8, "Eaves_mean": 2.82, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.917, "Heated_are": 143.2, "Mean_Uvalu": 0.35, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199528843804808, 48.792687564792338, 0.0 ], [ 9.199832378107914, 48.792866436018663, 0.0 ], [ 9.199791536916521, 48.792897980137376, 0.0 ], [ 9.199779459337368, 48.79290690352542, 0.0 ], [ 9.199474427879409, 48.792728034754354, 0.0 ], [ 9.199528843804808, 48.792687564792338, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024388", "Latitude": 48.79012, "Longitude": 9.21311, "X_coordina": 3515730.81, "Y_coordina": 5405872.27, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 505.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 142.1, "Total_wall": 238.5, "Total_wa00": 0.0, "Total_outw": 412.4, "Total_shar": 348.3, "Total_roof": 206.9, "Gross_volu": 1721.8, "Is_Gross_v": "false", "Heated_vol": 1579.7, "Ridge_mean": 14.8, "Eaves_mean": 9.41, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.358, "Heated_are": 505.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 36.8, "Total_Year": 26608.0, "January_He": 4629.0, "February_H": 3224.0, "March_Heat": 1960.0, "April_Heat": 354.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 951.0, "November_H": 2928.0, "December_H": 4510.0, "PV_potenti": 10.49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213099526844646, 48.790201233791258, 0.0 ], [ 9.213034278015032, 48.79021924931309, 0.0 ], [ 9.212960972474374, 48.790102214408073, 0.0 ], [ 9.213025815185027, 48.790084739220347, 0.0 ], [ 9.21308848265488, 48.790067807562821, 0.0 ], [ 9.213161377496554, 48.790184213682267, 0.0 ], [ 9.213099526844646, 48.790201233791258, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002415b", "Latitude": 48.78949, "Longitude": 9.20544, "X_coordina": 3515167.53, "Y_coordina": 5405800.3, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 583.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 127.1, "Total_wall": 523.1, "Total_wa00": 0.0, "Total_outw": 750.1, "Total_shar": 155.0, "Total_roof": 179.6, "Gross_volu": 1949.3, "Is_Gross_v": "false", "Heated_vol": 1822.2, "Ridge_mean": 17.2, "Eaves_mean": 13.03, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 9, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.445, "Heated_are": 583.1, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 34.6, "Total_Year": 29427.0, "January_He": 5149.0, "February_H": 3518.0, "March_Heat": 2026.0, "April_Heat": 335.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 32.0, "October_He": 919.0, "November_H": 3133.0, "December_H": 5070.0, "PV_potenti": 6.44 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205322094323474, 48.789549748251325, 0.0 ], [ 9.205278170258312, 48.789524647939125, 0.0 ], [ 9.205384274596023, 48.789446315111775, 0.0 ], [ 9.205427653914541, 48.789471326431979, 0.0 ], [ 9.205471443017824, 48.789496696699153, 0.0 ], [ 9.205507183327844, 48.789517315360634, 0.0 ], [ 9.205470140235013, 48.789544268627289, 0.0 ], [ 9.205432961011306, 48.789571222124771, 0.0 ], [ 9.205397221427303, 48.789550783286437, 0.0 ], [ 9.205368049526232, 48.789572327062679, 0.0 ], [ 9.205365336141362, 48.789574400145163, 0.0 ], [ 9.205322094323474, 48.789549748251325, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024130", "Latitude": 48.78798, "Longitude": 9.21135, "X_coordina": 3515602.76, "Y_coordina": 5405633.41, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 124.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 58.3, "Total_wall": 131.9, "Total_wa00": 0.0, "Total_outw": 231.1, "Total_shar": 102.4, "Total_roof": 70.7, "Gross_volu": 447.6, "Is_Gross_v": "false", "Heated_vol": 389.2, "Ridge_mean": 9.2, "Eaves_mean": 6.1, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.63, "Heated_are": 124.6, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 46.4, "Total_Year": 7750.0, "January_He": 1564.0, "February_H": 956.0, "March_Heat": 482.0, "April_Heat": 82.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 221.0, "November_H": 884.0, "December_H": 1576.0, "PV_potenti": 3.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211362446906408, 48.788035656606894, 0.0 ], [ 9.211305123681832, 48.788028477985144, 0.0 ], [ 9.21124112881358, 48.788020502259968, 0.0 ], [ 9.211258575153588, 48.787962109800354, 0.0 ], [ 9.211320942193954, 48.787971347434265, 0.0 ], [ 9.211377726295552, 48.78797978596905, 0.0 ], [ 9.211362446906408, 48.788035656606894, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000240ec", "Latitude": 48.79211, "Longitude": 9.20494, "X_coordina": 3515130.43, "Y_coordina": 5406092.01, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 102.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 56.8, "Total_wall": 162.1, "Total_wa00": 0.0, "Total_outw": 355.3, "Total_shar": 0.0, "Total_roof": 56.8, "Gross_volu": 313.7, "Is_Gross_v": "false", "Heated_vol": 272.6, "Ridge_mean": 5.5, "Eaves_mean": 5.52, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.957, "Heated_are": 102.7, "Mean_Uvalu": 0.5, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204853191039462, 48.792174734270269, 0.0 ], [ 9.204858933073563, 48.792147657053661, 0.0 ], [ 9.204846135083281, 48.792146510812827, 0.0 ], [ 9.204853896625378, 48.792114034588259, 0.0 ], [ 9.204868872177482, 48.792115176954333, 0.0 ], [ 9.204873526144318, 48.792088281519597, 0.0 ], [ 9.204940643722381, 48.792093377663164, 0.0 ], [ 9.204935989424712, 48.792120183177587, 0.0 ], [ 9.204950692784209, 48.792121326017437, 0.0 ], [ 9.204942388375493, 48.792154162908972, 0.0 ], [ 9.204928092202628, 48.792152749572715, 0.0 ], [ 9.204921672277072, 48.792180457464191, 0.0 ], [ 9.204853191039462, 48.792174734270269, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002408f", "Latitude": 48.79188, "Longitude": 9.20038, "X_coordina": 3514795.53, "Y_coordina": 5406065.13, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 721.9, "SecondaryU": "retail", "Secondar00": 195.8, "BuildingTy": "MFH", "Footprint_": 244.8, "Total_wall": 502.4, "Total_wa00": 0.0, "Total_outw": 819.0, "Total_shar": 317.7, "Total_roof": 329.0, "Gross_volu": 3112.8, "Is_Gross_v": "false", "Heated_vol": 2868.0, "Ridge_mean": 15.0, "Eaves_mean": 10.49, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 11, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.362, "Heated_are": 917.8, "Mean_Uvalu": 0.42, "Specific_d": "28,0", "Specific_s": 38.0, "Total_Year": 60649.0, "January_He": 8251.0, "February_H": 6041.0, "March_Heat": 4089.0, "April_Heat": 1074.0, "May_Heatin": 43.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 140.0, "October_He": 1982.0, "November_H": 5316.0, "December_H": 7980.0, "PV_potenti": 14.58 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200167120067194, 48.791857451502146, 0.0 ], [ 9.200210542811247, 48.791825093443919, 0.0 ], [ 9.200254236978372, 48.791792555049945, 0.0 ], [ 9.200353411354749, 48.791850563115176, 0.0 ], [ 9.200414252997753, 48.791886156913868, 0.0 ], [ 9.200512063182524, 48.791943267979867, 0.0 ], [ 9.200425084949122, 48.792008793849092, 0.0 ], [ 9.200167120067194, 48.791857451502146, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024090", "Latitude": 48.79188, "Longitude": 9.20053, "X_coordina": 3514806.45, "Y_coordina": 5406064.63, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 128.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 53.3, "Total_wall": 123.1, "Total_wa00": 0.0, "Total_outw": 221.3, "Total_shar": 187.2, "Total_roof": 53.3, "Gross_volu": 428.4, "Is_Gross_v": "false", "Heated_vol": 400.2, "Ridge_mean": 8.0, "Eaves_mean": 8.03, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.557, "Heated_are": 128.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 41.9, "Total_Year": 7401.0, "January_He": 1446.0, "February_H": 895.0, "March_Heat": 467.0, "April_Heat": 77.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 224.0, "November_H": 813.0, "December_H": 1438.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200512063182524, 48.791943267979867, 0.0 ], [ 9.200414252997753, 48.791886156913868, 0.0 ], [ 9.200464459702262, 48.791848571384648, 0.0 ], [ 9.200561998033939, 48.791905772805471, 0.0 ], [ 9.200512063182524, 48.791943267979867, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00024091", "Latitude": 48.79183, "Longitude": 9.20045, "X_coordina": 3514800.64, "Y_coordina": 5406060.14, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 45.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 28.7, "Total_wall": 57.9, "Total_wa00": 0.0, "Total_outw": 120.5, "Total_shar": 120.5, "Total_roof": 28.7, "Gross_volu": 143.4, "Is_Gross_v": "false", "Heated_vol": 143.4, "Ridge_mean": 5.0, "Eaves_mean": 5.02, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.804, "Heated_are": 45.9, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 52.4, "Total_Year": 3131.0, "January_He": 611.0, "February_H": 406.0, "March_Heat": 238.0, "April_Heat": 56.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 113.0, "November_H": 359.0, "December_H": 611.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200414252997753, 48.791886156913868, 0.0 ], [ 9.200353411354749, 48.791850563115176, 0.0 ], [ 9.200387198992384, 48.791825235794121, 0.0 ], [ 9.200413254116993, 48.79184038754039, 0.0 ], [ 9.200429673192527, 48.791828129354819, 0.0 ], [ 9.200464459702262, 48.791848571384648, 0.0 ], [ 9.200414252997753, 48.791886156913868, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023ef2", "Latitude": 48.79473, "Longitude": 9.20967, "X_coordina": 3515476.95, "Y_coordina": 5406384.27, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3036, "PrimaryUsa": "event location", "PrimaryU00": 325.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 180.4, "Total_wall": 224.0, "Total_wa00": 0.0, "Total_outw": 481.6, "Total_shar": 106.3, "Total_roof": 180.4, "Gross_volu": 886.2, "Is_Gross_v": "false", "Heated_vol": 886.2, "Ridge_mean": 4.9, "Eaves_mean": 4.91, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.66, "Heated_are": 325.5, "Mean_Uvalu": 0.41, "Specific_d": "non calculated", "Specific_s": 52.8, "Total_Year": 17196.0, "January_He": 3929.0, "February_H": 2799.0, "March_Heat": 1951.0, "April_Heat": 655.0, "May_Heatin": 66.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 152.0, "October_He": 1154.0, "November_H": 2603.0, "December_H": 3884.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209493048696139, 48.794780735262712, 0.0 ], [ 9.209524931570673, 48.794690843627151, 0.0 ], [ 9.209757824506934, 48.794727198400132, 0.0 ], [ 9.209725669439976, 48.794817000671763, 0.0 ], [ 9.209493048696139, 48.794780735262712, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023e8a", "Latitude": 48.7906, "Longitude": 9.21369, "X_coordina": 3515773.88, "Y_coordina": 5405925.43, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 581.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 161.6, "Total_wall": 356.3, "Total_wa00": 0.0, "Total_outw": 594.8, "Total_shar": 221.6, "Total_roof": 217.3, "Gross_volu": 1980.1, "Is_Gross_v": "false", "Heated_vol": 1818.5, "Ridge_mean": 14.7, "Eaves_mean": 10.12, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 7, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.391, "Heated_are": 581.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.5, "Total_Year": 33392.0, "January_He": 5808.0, "February_H": 4193.0, "March_Heat": 2709.0, "April_Heat": 585.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 73.0, "October_He": 1354.0, "November_H": 3798.0, "December_H": 5638.0, "PV_potenti": 9.54 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213564445677832, 48.79055916781487, 0.0 ], [ 9.213638180670968, 48.790552466627922, 0.0 ], [ 9.213707153888745, 48.790546133924785, 0.0 ], [ 9.213727456276304, 48.790647979710641, 0.0 ], [ 9.213734268103508, 48.790681688426062, 0.0 ], [ 9.213731411653614, 48.790682053421911, 0.0 ], [ 9.213702844097508, 48.790684983993124, 0.0 ], [ 9.213590743332162, 48.790694813787468, 0.0 ], [ 9.213564445677832, 48.79055916781487, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023e8b", "Latitude": 48.79065, "Longitude": 9.21382, "X_coordina": 3515783.36, "Y_coordina": 5405931.12, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 59.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 42.1, "Total_wall": 70.5, "Total_wa00": 0.0, "Total_outw": 193.5, "Total_shar": 37.0, "Total_roof": 50.3, "Gross_volu": 181.2, "Is_Gross_v": "false", "Heated_vol": 156.6, "Ridge_mean": 5.4, "Eaves_mean": 3.08, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.969, "Heated_are": 59.0, "Mean_Uvalu": 0.52, "Specific_d": "32,9", "Specific_s": 28.1, "Total_Year": 3595.0, "January_He": 502.0, "February_H": 295.0, "March_Heat": 122.0, "April_Heat": 11.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 23.0, "November_H": 219.0, "December_H": 486.0, "PV_potenti": 1.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213731411653614, 48.790682053421911, 0.0 ], [ 9.213734268103508, 48.790681688426062, 0.0 ], [ 9.213727456276304, 48.790647979710641, 0.0 ], [ 9.213820513295044, 48.790640433233577, 0.0 ], [ 9.213829591715317, 48.790695089938481, 0.0 ], [ 9.21373530860323, 48.790702368927491, 0.0 ], [ 9.213731411653614, 48.790682053421911, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023e40", "Latitude": 48.78969, "Longitude": 9.21172, "X_coordina": 3515629.23, "Y_coordina": 5405823.78, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 967.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 643.2, "Total_wall": 606.1, "Total_wa00": 0.0, "Total_outw": 1502.1, "Total_shar": 0.0, "Total_roof": 658.0, "Gross_volu": 3422.7, "Is_Gross_v": "false", "Heated_vol": 3023.4, "Ridge_mean": 8.1, "Eaves_mean": 3.49, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.578, "Heated_are": 967.5, "Mean_Uvalu": 0.45, "Specific_d": "24,8", "Specific_s": 55.5, "Total_Year": 77737.0, "January_He": 12774.0, "February_H": 8983.0, "March_Heat": 5660.0, "April_Heat": 1447.0, "May_Heatin": 126.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 2, "September_": 364.0, "October_He": 3287.0, "November_H": 8415.0, "December_H": 12638.0, "PV_potenti": 31.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211703754510109, 48.789814708573694, 0.0 ], [ 9.21171060147061, 48.789824767433473, 0.0 ], [ 9.211708019129631, 48.789825581493453, 0.0 ], [ 9.211695862778898, 48.789847455283287, 0.0 ], [ 9.21168700318643, 48.789844234318352, 0.0 ], [ 9.211605858773595, 48.789868752751872, 0.0 ], [ 9.211542596834978, 48.789776697252861, 0.0 ], [ 9.211532402805299, 48.789779773381603, 0.0 ], [ 9.211495568137675, 48.789726066701817, 0.0 ], [ 9.211505762158755, 48.78972299057633, 0.0 ], [ 9.211449620408537, 48.789641173241293, 0.0 ], [ 9.211530901000771, 48.789616744590269, 0.0 ], [ 9.211537611052453, 48.789626623864855, 0.0 ], [ 9.211565338150555, 48.789618120108379, 0.0 ], [ 9.211569416353543, 48.789617033532529, 0.0 ], [ 9.211576674558634, 48.789627811034151, 0.0 ], [ 9.211649528375618, 48.789606005566391, 0.0 ], [ 9.211641997597456, 48.789595138646597, 0.0 ], [ 9.211645803236257, 48.789593962645313, 0.0 ], [ 9.211673531054483, 48.789585638708701, 0.0 ], [ 9.211666820981653, 48.789575759441973, 0.0 ], [ 9.211748101740929, 48.789551420560798, 0.0 ], [ 9.211804380723281, 48.789633417346643, 0.0 ], [ 9.21181484651089, 48.789630250770259, 0.0 ], [ 9.211851544599659, 48.789683777752906, 0.0 ], [ 9.211840943090282, 48.789687034505874, 0.0 ], [ 9.211904205839142, 48.789779179764722, 0.0 ], [ 9.211822925166951, 48.789803608678476, 0.0 ], [ 9.211820094111262, 48.789809998463724, 0.0 ], [ 9.211787669440554, 48.78980178512461, 0.0 ], [ 9.211784814918381, 48.789802599686887, 0.0 ], [ 9.211777559292345, 48.789792451659359, 0.0 ], [ 9.211703754510109, 48.789814708573694, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023d08", "Latitude": 48.79462, "Longitude": 9.21234, "X_coordina": 3515672.96, "Y_coordina": 5406372.53, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1622.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 328.9, "Total_wall": 1107.3, "Total_wa00": 0.0, "Total_outw": 1435.9, "Total_shar": 212.5, "Total_roof": 328.9, "Gross_volu": 5070.0, "Is_Gross_v": "false", "Heated_vol": 5070.0, "Ridge_mean": 15.9, "Eaves_mean": 15.94, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 20, "Number_o00": 41, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.348, "Heated_are": 1622.4, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 32.6, "Total_Year": 78545.0, "January_He": 12745.0, "February_H": 9154.0, "March_Heat": 6053.0, "April_Heat": 1543.0, "May_Heatin": 56.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 147.0, "October_He": 2770.0, "November_H": 7964.0, "December_H": 12413.0, "PV_potenti": 13.04 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212155090942089, 48.794540262205977, 0.0 ], [ 9.212464224063623, 48.79467799473111, 0.0 ], [ 9.212457980727077, 48.794746617923089, 0.0 ], [ 9.212289044623704, 48.794739915424195, 0.0 ], [ 9.212121589445001, 48.794664778123163, 0.0 ], [ 9.212130827920847, 48.79456395679744, 0.0 ], [ 9.212155090942089, 48.794540262205977, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023cdb", "Latitude": 48.78769, "Longitude": 9.20636, "X_coordina": 3515235.99, "Y_coordina": 5405600.23, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 447.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 136.1, "Total_wall": 221.4, "Total_wa00": 0.0, "Total_outw": 402.0, "Total_shar": 310.0, "Total_roof": 206.0, "Gross_volu": 1535.8, "Is_Gross_v": "false", "Heated_vol": 1399.7, "Ridge_mean": 14.0, "Eaves_mean": 8.55, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 6, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.386, "Heated_are": 447.9, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 38.5, "Total_Year": 24358.0, "January_He": 4175.0, "February_H": 2947.0, "March_Heat": 1944.0, "April_Heat": 530.0, "May_Heatin": 24.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 57.0, "October_He": 889.0, "November_H": 2598.0, "December_H": 4100.0, "PV_potenti": 9.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206236485183956, 48.787653782682909, 0.0 ], [ 9.206426581548568, 48.787682757200145, 0.0 ], [ 9.20641111788734, 48.787728196369066, 0.0 ], [ 9.206398477715883, 48.787765267574322, 0.0 ], [ 9.206207433609917, 48.787737553639474, 0.0 ], [ 9.206220614206824, 48.787699492326922, 0.0 ], [ 9.206236485183956, 48.787653782682909, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023bf1", "Latitude": 48.7907, "Longitude": 9.20461, "X_coordina": 3515106.75, "Y_coordina": 5405934.7, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 680.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 208.2, "Total_wall": 436.6, "Total_wa00": 0.0, "Total_outw": 782.3, "Total_shar": 114.4, "Total_roof": 327.2, "Gross_volu": 2334.4, "Is_Gross_v": "false", "Heated_vol": 2126.2, "Ridge_mean": 14.5, "Eaves_mean": 7.79, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 8, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.438, "Heated_are": 680.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.3, "Total_Year": 38867.0, "January_He": 7003.0, "February_H": 4825.0, "March_Heat": 2944.0, "April_Heat": 572.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1412.0, "November_H": 4369.0, "December_H": 6882.0, "PV_potenti": 16.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204671223804217, 48.790802194137328, 0.0 ], [ 9.204582675955248, 48.790814581090892, 0.0 ], [ 9.204509295895544, 48.790775055114473, 0.0 ], [ 9.204469577831095, 48.790646444945764, 0.0 ], [ 9.204615252767089, 48.79062604331034, 0.0 ], [ 9.204671223804217, 48.790802194137328, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023bf2", "Latitude": 48.79081, "Longitude": 9.20452, "X_coordina": 3515099.87, "Y_coordina": 5405947.45, "LOD": "LOD2", "Year_of_co": 1968, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3044, "PrimaryUsa": "office and administration", "PrimaryU00": 228.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 116.1, "Total_wall": 212.7, "Total_wa00": 0.0, "Total_outw": 454.1, "Total_shar": 114.4, "Total_roof": 142.5, "Gross_volu": 831.2, "Is_Gross_v": "false", "Heated_vol": 715.1, "Ridge_mean": 14.1, "Eaves_mean": 4.08, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.615, "Heated_are": 228.8, "Mean_Uvalu": 0.48, "Specific_d": "14,6", "Specific_s": 76.2, "Total_Year": 20789.0, "January_He": 3968.0, "February_H": 2961.0, "March_Heat": 2041.0, "April_Heat": 656.0, "May_Heatin": 69.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 151.0, "October_He": 1091.0, "November_H": 2641.0, "December_H": 3866.0, "PV_potenti": 5.91 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204509295895544, 48.790775055114473, 0.0 ], [ 9.204582675955248, 48.790814581090892, 0.0 ], [ 9.204586953746936, 48.790829051193377, 0.0 ], [ 9.204551355798293, 48.790843592132092, 0.0 ], [ 9.204566938584314, 48.790860290244481, 0.0 ], [ 9.204535416872071, 48.79087320531206, 0.0 ], [ 9.204519971283593, 48.790856776722613, 0.0 ], [ 9.204426221907029, 48.79089534056552, 0.0 ], [ 9.204367583052521, 48.790832857808368, 0.0 ], [ 9.204509295895544, 48.790775055114473, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023b45", "Latitude": 48.78867, "Longitude": 9.21385, "X_coordina": 3515785.84, "Y_coordina": 5405711.09, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 105.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.8, "Total_wall": 64.1, "Total_wa00": 0.0, "Total_outw": 133.3, "Total_shar": 223.7, "Total_roof": 57.1, "Gross_volu": 377.7, "Is_Gross_v": "false", "Heated_vol": 330.8, "Ridge_mean": 9.6, "Eaves_mean": 6.5, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.475, "Heated_are": 105.9, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 46.2, "Total_Year": 6563.0, "January_He": 1203.0, "February_H": 853.0, "March_Heat": 511.0, "April_Heat": 92.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 12.0, "October_He": 257.0, "November_H": 777.0, "December_H": 1178.0, "PV_potenti": 1.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213824125731556, 48.788671908212109, 0.0 ], [ 9.213824398291077, 48.788671997629699, 0.0 ], [ 9.213876188056778, 48.788689796265245, 0.0 ], [ 9.213827106155659, 48.788732780989868, 0.0 ], [ 9.213781425846488, 48.788711553892519, 0.0 ], [ 9.213731790981429, 48.78868844571975, 0.0 ], [ 9.213768792349404, 48.788652857199878, 0.0 ], [ 9.213824125731556, 48.788671908212109, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002393f", "Latitude": 48.79087, "Longitude": 9.21296, "X_coordina": 3515720.08, "Y_coordina": 5405955.2, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1152.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 169.2, "Total_wall": 964.3, "Total_wa00": 0.0, "Total_outw": 1194.6, "Total_shar": 267.6, "Total_roof": 169.2, "Gross_volu": 3702.3, "Is_Gross_v": "false", "Heated_vol": 3600.0, "Ridge_mean": 23.1, "Eaves_mean": 23.1, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 21, "Number_o00": 29, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.359, "Heated_are": 1152.0, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 36.0, "Total_Year": 59762.0, "January_He": 10268.0, "February_H": 7130.0, "March_Heat": 4517.0, "April_Heat": 1082.0, "May_Heatin": 45.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 101.0, "October_He": 1978.0, "November_H": 6252.0, "December_H": 10142.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21303443755434, 48.790932073564903, 0.0 ], [ 9.213031853655485, 48.790932527962802, 0.0 ], [ 9.212989667295938, 48.790933325382163, 0.0 ], [ 9.2128199699404, 48.790936696511459, 0.0 ], [ 9.212806633023858, 48.790936811080982, 0.0 ], [ 9.212804252829406, 48.790888886191915, 0.0 ], [ 9.2128020300283, 48.790845996734113, 0.0 ], [ 9.212985202348776, 48.790843050328903, 0.0 ], [ 9.213032288419347, 48.790842333771167, 0.0 ], [ 9.213034034231633, 48.790868947932317, 0.0 ], [ 9.213031312718691, 48.790869042890336, 0.0 ], [ 9.213033548658744, 48.790914989722197, 0.0 ], [ 9.21303443755434, 48.790932073564903, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023672", "Latitude": 48.78913, "Longitude": 9.2069, "X_coordina": 3515274.8, "Y_coordina": 5405760.8, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1163.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 214.1, "Total_wall": 837.5, "Total_wa00": 0.0, "Total_outw": 1161.1, "Total_shar": 301.8, "Total_roof": 297.4, "Gross_volu": 3849.8, "Is_Gross_v": "false", "Heated_vol": 3635.7, "Ridge_mean": 20.2, "Eaves_mean": 15.42, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 19, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.365, "Heated_are": 1163.4, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 33.7, "Total_Year": 57600.0, "January_He": 9802.0, "February_H": 6790.0, "March_Heat": 4198.0, "April_Heat": 816.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 75.0, "October_He": 1862.0, "November_H": 6008.0, "December_H": 9600.0, "PV_potenti": 12.54 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206815123215712, 48.78917614157676, 0.0 ], [ 9.20680964191722, 48.789166979209021, 0.0 ], [ 9.20679957124716, 48.78916699729406, 0.0 ], [ 9.206793057395654, 48.78917150517335, 0.0 ], [ 9.206742303897267, 48.78917357462096, 0.0 ], [ 9.20674499821814, 48.789200007334593, 0.0 ], [ 9.206739683680633, 48.789198308326455, 0.0 ], [ 9.20673725415493, 48.789170076664462, 0.0 ], [ 9.206733968196982, 48.789132134786364, 0.0 ], [ 9.206730260306919, 48.78909086649054, 0.0 ], [ 9.206729974459749, 48.789087539828884, 0.0 ], [ 9.206943468854163, 48.789079692711098, 0.0 ], [ 9.20697158066525, 48.789098436231725, 0.0 ], [ 9.206946652116851, 48.789225003596854, 0.0 ], [ 9.206830794190834, 48.789214241056243, 0.0 ], [ 9.206834397669589, 48.789196969245005, 0.0 ], [ 9.20683840091602, 48.789177628471833, 0.0 ], [ 9.206828202653643, 48.789179715032297, 0.0 ], [ 9.206815123215712, 48.78917614157676, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023630", "Latitude": 48.7916, "Longitude": 9.20262, "X_coordina": 3514960.15, "Y_coordina": 5406033.91, "LOD": "LOD2", "Year_of_co": 2001, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 771.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 127.0, "Total_wall": 665.7, "Total_wa00": 0.0, "Total_outw": 906.5, "Total_shar": 237.1, "Total_roof": 229.4, "Gross_volu": 2538.4, "Is_Gross_v": "false", "Heated_vol": 2411.4, "Ridge_mean": 22.9, "Eaves_mean": 17.35, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 12, "Number_o00": 22, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.418, "Heated_are": 771.7, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 37.4, "Total_Year": 41118.0, "January_He": 7230.0, "February_H": 5032.0, "March_Heat": 3000.0, "April_Heat": 539.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 56.0, "October_He": 1410.0, "November_H": 4517.0, "December_H": 7097.0, "PV_potenti": 8.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202650955999063, 48.791664627435601, 0.0 ], [ 9.20262245964979, 48.791685539854683, 0.0 ], [ 9.202528739531539, 48.791630671473989, 0.0 ], [ 9.202508792284494, 48.791645364100823, 0.0 ], [ 9.202489010474476, 48.791633528970486, 0.0 ], [ 9.202460088841796, 48.791616404413297, 0.0 ], [ 9.202554394865547, 48.791546367934416, 0.0 ], [ 9.202583723331802, 48.791563132058023, 0.0 ], [ 9.202604185257659, 48.791574876052088, 0.0 ], [ 9.202697771430389, 48.791630284149321, 0.0 ], [ 9.202683252171015, 48.791641010613539, 0.0 ], [ 9.202650955999063, 48.791664627435601, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023631", "Latitude": 48.79167, "Longitude": 9.20279, "X_coordina": 3514972.3, "Y_coordina": 5406042.0, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 21.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 27.0, "Total_wall": 52.0, "Total_wa00": 0.0, "Total_outw": 160.6, "Total_shar": 0.0, "Total_roof": 27.0, "Gross_volu": 73.3, "Is_Gross_v": "false", "Heated_vol": 67.8, "Ridge_mean": 2.7, "Eaves_mean": 2.71, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.504, "Heated_are": 21.7, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202794631746702, 48.791687574799944, 0.0 ], [ 9.202747678057481, 48.791721378827042, 0.0 ], [ 9.202694335153151, 48.791689459928151, 0.0 ], [ 9.202740471904885, 48.791655567437267, 0.0 ], [ 9.202794631746702, 48.791687574799944, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023632", "Latitude": 48.79171, "Longitude": 9.20285, "X_coordina": 3514977.09, "Y_coordina": 5406046.27, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 22.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 27.6, "Total_wall": 52.6, "Total_wa00": 0.0, "Total_outw": 159.5, "Total_shar": 0.0, "Total_roof": 27.6, "Gross_volu": 70.9, "Is_Gross_v": "false", "Heated_vol": 68.9, "Ridge_mean": 2.6, "Eaves_mean": 2.57, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.543, "Heated_are": 22.0, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202804181367286, 48.791693223169489, 0.0 ], [ 9.202860247736755, 48.791725496914339, 0.0 ], [ 9.202814522555261, 48.791760198040343, 0.0 ], [ 9.202759542416725, 48.7917272928957, 0.0 ], [ 9.202804181367286, 48.791693223169489, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023594", "Latitude": 48.79555, "Longitude": 9.21235, "X_coordina": 3515673.81, "Y_coordina": 5406475.2, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 997.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 230.8, "Total_wall": 857.3, "Total_wa00": 0.0, "Total_outw": 1158.3, "Total_shar": 0.0, "Total_roof": 230.8, "Gross_volu": 3307.5, "Is_Gross_v": "false", "Heated_vol": 3116.0, "Ridge_mean": 14.3, "Eaves_mean": 14.33, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 12, "Number_o00": 21, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.415, "Heated_are": 997.1, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 38.5, "Total_Year": 54168.0, "January_He": 9191.0, "February_H": 6618.0, "March_Heat": 4363.0, "April_Heat": 1099.0, "May_Heatin": 39.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 127.0, "October_He": 2110.0, "November_H": 5881.0, "December_H": 8945.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212377319802705, 48.795661379119366, 0.0 ], [ 9.212224174434416, 48.795655906334105, 0.0 ], [ 9.212239323336282, 48.795471984770224, 0.0 ], [ 9.212392468146723, 48.795477457536478, 0.0 ], [ 9.212377319802705, 48.795661379119366, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00023111", "Latitude": 48.7948, "Longitude": 9.2092, "X_coordina": 3515442.37, "Y_coordina": 5406391.36, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 336.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 108.5, "Total_wall": 355.4, "Total_wa00": 0.0, "Total_outw": 560.3, "Total_shar": 0.0, "Total_roof": 175.4, "Gross_volu": 1062.8, "Is_Gross_v": "false", "Heated_vol": 1050.0, "Ridge_mean": 13.1, "Eaves_mean": 6.44, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 4, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.606, "Heated_are": 336.0, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 51.7, "Total_Year": 22696.0, "January_He": 4351.0, "February_H": 2957.0, "March_Heat": 1758.0, "April_Heat": 378.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 861.0, "November_H": 2701.0, "December_H": 4302.0, "PV_potenti": 8.55 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209141153577839, 48.794864464231381, 0.0 ], [ 9.209069925557603, 48.794853802738189, 0.0 ], [ 9.209102348049171, 48.79476256138777, 0.0 ], [ 9.209172078789164, 48.79477322558067, 0.0 ], [ 9.209240311278498, 48.794783622682907, 0.0 ], [ 9.209208704535168, 48.794874592819241, 0.0 ], [ 9.209141153577839, 48.794864464231381, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000230d5", "Latitude": 48.79134, "Longitude": 9.21318, "X_coordina": 3515735.79, "Y_coordina": 5406007.2, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 464.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 130.4, "Total_wall": 232.8, "Total_wa00": 0.0, "Total_outw": 393.6, "Total_shar": 325.1, "Total_roof": 193.4, "Gross_volu": 1582.2, "Is_Gross_v": "false", "Heated_vol": 1451.8, "Ridge_mean": 14.8, "Eaves_mean": 9.48, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.369, "Heated_are": 464.6, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 37.9, "Total_Year": 24947.0, "January_He": 4311.0, "February_H": 3084.0, "March_Heat": 1898.0, "April_Heat": 347.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 37.0, "October_He": 918.0, "November_H": 2780.0, "December_H": 4204.0, "PV_potenti": 8.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213100576961819, 48.791413402216136, 0.0 ], [ 9.213037900783657, 48.791396522615464, 0.0 ], [ 9.213109012469472, 48.791284256303399, 0.0 ], [ 9.213170870813665, 48.791300867608733, 0.0 ], [ 9.213230140328481, 48.791316764285348, 0.0 ], [ 9.213159574394737, 48.791429299432195, 0.0 ], [ 9.213100576961819, 48.791413402216136, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00022dcd", "Latitude": 48.79587, "Longitude": 9.19837, "X_coordina": 3514646.36, "Y_coordina": 5406508.81, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 47081.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 7557.8, "Total_wall": 10779.8, "Total_wa00": 0.0, "Total_outw": 11299.8, "Total_shar": 0.0, "Total_roof": 7604.0, "Gross_volu": 154688.7, "Is_Gross_v": "false", "Heated_vol": 147130.9, "Ridge_mean": 24.3, "Eaves_mean": 18.99, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.171, "Heated_are": 47081.9, "Mean_Uvalu": 0.43, "Specific_d": "32,9", "Specific_s": 1.2, "Total_Year": 1602787.0, "January_He": 24013.0, "February_H": 8665.0, "March_Heat": 995.0, "April_Heat": 11.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 18.0, "November_H": 2459.0, "December_H": 19516.0, "PV_potenti": 369.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198639155576206, 48.795859717733642, 0.0 ], [ 9.199602764628823, 48.796466114453835, 0.0 ], [ 9.199477613193258, 48.796552567973151, 0.0 ], [ 9.199374179480445, 48.796623966528379, 0.0 ], [ 9.199268574116498, 48.796696987371107, 0.0 ], [ 9.197047478510074, 48.795299620858785, 0.0 ], [ 9.197151996381079, 48.795226873666067, 0.0 ], [ 9.197257735029638, 48.795153135127478, 0.0 ], [ 9.197347185419511, 48.795090844696432, 0.0 ], [ 9.198605899916318, 48.795882795518267, 0.0 ], [ 9.198639155576206, 48.795859717733642, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00022dc5", "Latitude": 48.79235, "Longitude": 9.20159, "X_coordina": 3514884.04, "Y_coordina": 5406118.06, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 832.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 171.7, "Total_wall": 758.6, "Total_wa00": 0.0, "Total_outw": 1039.0, "Total_shar": 0.0, "Total_roof": 203.3, "Gross_volu": 2772.8, "Is_Gross_v": "false", "Heated_vol": 2601.1, "Ridge_mean": 18.0, "Eaves_mean": 14.23, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 13, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.427, "Heated_are": 832.4, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 39.5, "Total_Year": 46047.0, "January_He": 8232.0, "February_H": 5715.0, "March_Heat": 3387.0, "April_Heat": 614.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1609.0, "November_H": 5136.0, "December_H": 8085.0, "PV_potenti": 11.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201594988883828, 48.792416083950705, 0.0 ], [ 9.201596216656576, 48.792416801190086, 0.0 ], [ 9.20153881427046, 48.792458716134462, 0.0 ], [ 9.201479608289878, 48.792424109230595, 0.0 ], [ 9.201419993374078, 48.792389323164208, 0.0 ], [ 9.20155365529379, 48.792290353197373, 0.0 ], [ 9.201611088641723, 48.792324153855084, 0.0 ], [ 9.201672205023563, 48.792360016276668, 0.0 ], [ 9.201616027655682, 48.792401929114583, 0.0 ], [ 9.20161493634223, 48.792401301560083, 0.0 ], [ 9.201594988883828, 48.792416083950705, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00022b15", "Latitude": 48.79477, "Longitude": 9.20412, "X_coordina": 3515069.26, "Y_coordina": 5406386.72, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 997.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 234.9, "Total_wall": 814.7, "Total_wa00": 0.0, "Total_outw": 1172.9, "Total_shar": 201.2, "Total_roof": 234.9, "Gross_volu": 3193.7, "Is_Gross_v": "false", "Heated_vol": 3117.7, "Ridge_mean": 13.8, "Eaves_mean": 13.82, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 12, "Number_o00": 27, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.408, "Heated_are": 997.7, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 32.5, "Total_Year": 48218.0, "January_He": 8037.0, "February_H": 5657.0, "March_Heat": 3531.0, "April_Heat": 736.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 64.0, "October_He": 1571.0, "November_H": 4936.0, "December_H": 7861.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204018134684727, 48.794838583956022, 0.0 ], [ 9.204023831060542, 48.794833628068638, 0.0 ], [ 9.203917551975243, 48.794771409364863, 0.0 ], [ 9.203940212674741, 48.794754373684484, 0.0 ], [ 9.20395378164733, 48.794744098368596, 0.0 ], [ 9.203983387206511, 48.794761491101063, 0.0 ], [ 9.204060462694548, 48.794704073245605, 0.0 ], [ 9.204072674954668, 48.794694879402329, 0.0 ], [ 9.204096140839274, 48.794708596120138, 0.0 ], [ 9.20410658956394, 48.794700844175679, 0.0 ], [ 9.204132648025215, 48.794716174914939, 0.0 ], [ 9.204122335041765, 48.794723836697607, 0.0 ], [ 9.204201874130904, 48.794770455933509, 0.0 ], [ 9.204189390395332, 48.794779830118799, 0.0 ], [ 9.204235777168471, 48.794807084621148, 0.0 ], [ 9.204141466300909, 48.794876852673816, 0.0 ], [ 9.204069703346196, 48.794834715795155, 0.0 ], [ 9.204043920614824, 48.794853825274259, 0.0 ], [ 9.204018134684727, 48.794838583956022, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002294e", "Latitude": 48.78912, "Longitude": 9.20622, "X_coordina": 3515225.23, "Y_coordina": 5405759.04, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 65.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 82.0, "Total_wall": 79.2, "Total_wa00": 0.0, "Total_outw": 258.4, "Total_shar": 53.2, "Total_roof": 82.0, "Gross_volu": 268.7, "Is_Gross_v": "false", "Heated_vol": 205.0, "Ridge_mean": 3.3, "Eaves_mean": 3.28, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.996, "Heated_are": 65.6, "Mean_Uvalu": 0.36, "Specific_d": "73,0", "Specific_s": 77.9, "Total_Year": 9900.0, "January_He": 1201.0, "February_H": 847.0, "March_Heat": 581.0, "April_Heat": 192.0, "May_Heatin": 23.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 41.0, "October_He": 293.0, "November_H": 752.0, "December_H": 1180.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206088405095842, 48.789111800142095, 0.0 ], [ 9.206259581612848, 48.789105468793778, 0.0 ], [ 9.206264448601928, 48.789164000367805, 0.0 ], [ 9.206093952337415, 48.789170330505868, 0.0 ], [ 9.206088405095842, 48.789111800142095, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002239a", "Latitude": 48.79325, "Longitude": 9.202, "X_coordina": 3514914.06, "Y_coordina": 5406217.28, "LOD": "LOD2", "Year_of_co": 1935, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 544.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 98.4, "Total_wall": 427.2, "Total_wa00": 0.0, "Total_outw": 589.8, "Total_shar": 297.9, "Total_roof": 138.8, "Gross_volu": 1789.7, "Is_Gross_v": "false", "Heated_vol": 1701.3, "Ridge_mean": 21.2, "Eaves_mean": 15.16, "Storey_num": 7, "Average_St": 2.9, "Number_of_": 9, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.385, "Heated_are": 544.4, "Mean_Uvalu": 0.61, "Specific_d": "15,8", "Specific_s": 47.1, "Total_Year": 34246.0, "January_He": 6081.0, "February_H": 4373.0, "March_Heat": 2917.0, "April_Heat": 757.0, "May_Heatin": 36.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 114.0, "October_He": 1502.0, "November_H": 3920.0, "December_H": 5922.0, "PV_potenti": 5.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201948980440003, 48.793330616018103, 0.0 ], [ 9.201862757626389, 48.793279240982748, 0.0 ], [ 9.201913780158046, 48.793241383630452, 0.0 ], [ 9.201967652434254, 48.793201453015037, 0.0 ], [ 9.202053734425796, 48.79325165921319, 0.0 ], [ 9.20202768025618, 48.793270948569919, 0.0 ], [ 9.202005696831975, 48.793287173378381, 0.0 ], [ 9.201948980440003, 48.793330616018103, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00022263", "Latitude": 48.79518, "Longitude": 9.20411, "X_coordina": 3515068.23, "Y_coordina": 5406432.72, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1038.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 239.4, "Total_wall": 899.2, "Total_wa00": 0.0, "Total_outw": 1173.8, "Total_shar": 175.7, "Total_roof": 239.4, "Gross_volu": 3244.8, "Is_Gross_v": "false", "Heated_vol": 3244.8, "Ridge_mean": 15.2, "Eaves_mean": 15.18, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 13, "Number_o00": 22, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.425, "Heated_are": 1038.3, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 35.6, "Total_Year": 53374.0, "January_He": 9093.0, "February_H": 6419.0, "March_Heat": 4019.0, "April_Heat": 813.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 86.0, "October_He": 1917.0, "November_H": 5706.0, "December_H": 8853.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20399139629713, 48.795259833230539, 0.0 ], [ 9.203962234849344, 48.795251342146138, 0.0 ], [ 9.203974813292094, 48.79523171653414, 0.0 ], [ 9.203983334049502, 48.795218392756524, 0.0 ], [ 9.203989443895118, 48.795214695068452, 0.0 ], [ 9.203918444378678, 48.795159517831252, 0.0 ], [ 9.204020697278487, 48.795101336032261, 0.0 ], [ 9.204057561924051, 48.795129866403911, 0.0 ], [ 9.204071956729043, 48.795121837700137, 0.0 ], [ 9.204175450762007, 48.79520186605815, 0.0 ], [ 9.204163772242349, 48.795208451182347, 0.0 ], [ 9.204210331270634, 48.795244517895149, 0.0 ], [ 9.204169030766506, 48.795296836705852, 0.0 ], [ 9.20414732047472, 48.795279789720858, 0.0 ], [ 9.204114864302962, 48.795297921885421, 0.0 ], [ 9.204070763236595, 48.795263829096747, 0.0 ], [ 9.204060032694354, 48.795269243524366, 0.0 ], [ 9.204014293671488, 48.795233984610228, 0.0 ], [ 9.204003158091179, 48.795240209062072, 0.0 ], [ 9.20399139629713, 48.795259833230539, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000221db", "Latitude": 48.79022, "Longitude": 9.21357, "X_coordina": 3515765.09, "Y_coordina": 5405883.23, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 550.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 147.8, "Total_wall": 258.5, "Total_wa00": 0.0, "Total_outw": 433.4, "Total_shar": 376.4, "Total_roof": 201.6, "Gross_volu": 1866.6, "Is_Gross_v": "false", "Heated_vol": 1718.9, "Ridge_mean": 15.1, "Eaves_mean": 10.13, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.341, "Heated_are": 550.0, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 35.0, "Total_Year": 27938.0, "January_He": 4811.0, "February_H": 3344.0, "March_Heat": 2009.0, "April_Heat": 347.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 34.0, "October_He": 960.0, "November_H": 3028.0, "December_H": 4684.0, "PV_potenti": 10.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213560461054621, 48.790165399650917, 0.0 ], [ 9.213629550720629, 48.790282801688669, 0.0 ], [ 9.213562936846987, 48.790299830881885, 0.0 ], [ 9.213495099233976, 48.790317132076083, 0.0 ], [ 9.213426828297752, 48.790200178059273, 0.0 ], [ 9.213492896951736, 48.790182970107914, 0.0 ], [ 9.213560461054621, 48.790165399650917, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000220f9", "Latitude": 48.79019, "Longitude": 9.19513, "X_coordina": 3514409.98, "Y_coordina": 5405876.59, "LOD": "LOD2", "Year_of_co": 1991, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 885.9, "SecondaryU": "office and administration", "Secondar00": 251.8, "BuildingTy": "RH", "Footprint_": 314.7, "Total_wall": 946.1, "Total_wa00": 0.0, "Total_outw": 1442.0, "Total_shar": 0.0, "Total_roof": 314.7, "Gross_volu": 3026.7, "Is_Gross_v": "false", "Heated_vol": 3026.7, "Ridge_mean": 9.6, "Eaves_mean": 9.62, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 14, "Number_o00": 29, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.521, "Heated_are": 1137.7, "Mean_Uvalu": 0.48, "Specific_d": "15,6", "Specific_s": 39.0, "Total_Year": 62082.0, "January_He": 11353.0, "February_H": 7592.0, "March_Heat": 4415.0, "April_Heat": 846.0, "May_Heatin": 35.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 101.0, "October_He": 2042.0, "November_H": 6801.0, "December_H": 11186.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194909784251456, 48.790067907782671, 0.0 ], [ 9.195064603579885, 48.790159008035481, 0.0 ], [ 9.195113028832887, 48.79018788140295, 0.0 ], [ 9.195331141364486, 48.790316282264044, 0.0 ], [ 9.195291651621822, 48.790345574419042, 0.0 ], [ 9.195278966319478, 48.790338222194457, 0.0 ], [ 9.195269874581431, 48.790345071807131, 0.0 ], [ 9.195249248742774, 48.790360663567498, 0.0 ], [ 9.195042866374777, 48.790238986956801, 0.0 ], [ 9.194995124365551, 48.790210831792137, 0.0 ], [ 9.194840303958415, 48.79011946167774, 0.0 ], [ 9.194867173378087, 48.790099543090491, 0.0 ], [ 9.194909784251456, 48.790067907782671, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002206b", "Latitude": 48.78761, "Longitude": 9.21455, "X_coordina": 3515837.47, "Y_coordina": 5405592.64, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 347.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 88.3, "Total_wall": 299.3, "Total_wa00": 0.0, "Total_outw": 458.5, "Total_shar": 141.7, "Total_roof": 142.0, "Gross_volu": 1155.0, "Is_Gross_v": "false", "Heated_vol": 1086.9, "Ridge_mean": 16.1, "Eaves_mean": 10.66, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 6, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.478, "Heated_are": 347.8, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 49.2, "Total_Year": 22607.0, "January_He": 4108.0, "February_H": 2955.0, "March_Heat": 1878.0, "April_Heat": 408.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 57.0, "October_He": 963.0, "November_H": 2700.0, "December_H": 4012.0, "PV_potenti": 5.68 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21446532106094, 48.787572028627636, 0.0 ], [ 9.214523893896299, 48.787585048388721, 0.0 ], [ 9.214582058504364, 48.787598068880676, 0.0 ], [ 9.214539135088405, 48.787680698778864, 0.0 ], [ 9.214422128751309, 48.78765546829635, 0.0 ], [ 9.21446532106094, 48.787572028627636, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002204c", "Latitude": 48.79184, "Longitude": 9.20083, "X_coordina": 3514828.28, "Y_coordina": 5406060.95, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 1149.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 281.3, "Total_wall": 937.9, "Total_wa00": 0.0, "Total_outw": 1270.3, "Total_shar": 0.0, "Total_roof": 281.3, "Gross_volu": 3591.1, "Is_Gross_v": "false", "Heated_vol": 3591.1, "Ridge_mean": 12.8, "Eaves_mean": 12.76, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.418, "Heated_are": 1149.1, "Mean_Uvalu": 0.4, "Specific_d": "73,0", "Specific_s": 48.4, "Total_Year": 139505.0, "January_He": 12960.0, "February_H": 9513.0, "March_Heat": 6501.0, "April_Heat": 2028.0, "May_Heatin": 185.0, "June_Heati": 5, "July_Heati": 0, "August_Hea": 1, "September_": 386.0, "October_He": 3213.0, "November_H": 8266.0, "December_H": 12549.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200636543299893, 48.79189656066707, 0.0 ], [ 9.200674242867825, 48.791862503857182, 0.0 ], [ 9.200671925266137, 48.791861518736262, 0.0 ], [ 9.200676129225906, 48.791857734619242, 0.0 ], [ 9.200678446827501, 48.791858719740091, 0.0 ], [ 9.200714248149268, 48.791826464696847, 0.0 ], [ 9.200711930189783, 48.791825389653724, 0.0 ], [ 9.200716947499522, 48.791820794805183, 0.0 ], [ 9.200719265100217, 48.791821779925208, 0.0 ], [ 9.200755066728361, 48.791789614792151, 0.0 ], [ 9.200752748769707, 48.791788539749852, 0.0 ], [ 9.200757359574069, 48.791784395226166, 0.0 ], [ 9.200759677173876, 48.791785380345381, 0.0 ], [ 9.200798461405647, 48.791750332443641, 0.0 ], [ 9.200796279545042, 48.791749257164888, 0.0 ], [ 9.200801297198351, 48.791744752235594, 0.0 ], [ 9.200939080649656, 48.791825982680066, 0.0 ], [ 9.200933246057248, 48.791830399117131, 0.0 ], [ 9.20093092665665, 48.791828964386532, 0.0 ], [ 9.200895135883233, 48.791863827263057, 0.0 ], [ 9.200897726761358, 48.791865081673564, 0.0 ], [ 9.200893117756205, 48.791869675817651, 0.0 ], [ 9.200890526877957, 48.791868421407067, 0.0 ], [ 9.200857176831592, 48.791901031923743, 0.0 ], [ 9.200859767710693, 48.791902286335073, 0.0 ], [ 9.200855700576495, 48.791906250067321, 0.0 ], [ 9.200853110056215, 48.791905085578861, 0.0 ], [ 9.200817048056166, 48.791940218674519, 0.0 ], [ 9.2008197746751, 48.791941382926453, 0.0 ], [ 9.2008153013947, 48.791945886907087, 0.0 ], [ 9.200812847329864, 48.79194481210336, 0.0 ], [ 9.200772143238272, 48.7919762664121, 0.0 ], [ 9.200773371347374, 48.791977073583304, 0.0 ], [ 9.20076984392734, 48.791979867364716, 0.0 ], [ 9.200762750338944, 48.791975743246283, 0.0 ], [ 9.200764243467992, 48.791974751483622, 0.0 ], [ 9.200692078106762, 48.791932343411922, 0.0 ], [ 9.200690721075205, 48.791933334936481, 0.0 ], [ 9.200684582335183, 48.791929748690706, 0.0 ], [ 9.200685802910479, 48.791928667480427, 0.0 ], [ 9.200637647139313, 48.791900335534997, 0.0 ], [ 9.200636426205115, 48.791901326821794, 0.0 ], [ 9.200631242665567, 48.79189836837412, 0.0 ], [ 9.200634361436389, 48.791895485385282, 0.0 ], [ 9.200636543299893, 48.79189656066707, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00021a2c", "Latitude": 48.78978, "Longitude": 9.20576, "X_coordina": 3515191.46, "Y_coordina": 5405832.83, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 258.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 202.0, "Total_wall": 166.6, "Total_wa00": 0.0, "Total_outw": 535.2, "Total_shar": 0.0, "Total_roof": 246.5, "Gross_volu": 1008.7, "Is_Gross_v": "false", "Heated_vol": 806.7, "Ridge_mean": 6.7, "Eaves_mean": 3.65, "Storey_num": 2, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.672, "Heated_are": 258.1, "Mean_Uvalu": 0.46, "Specific_d": "73,0", "Specific_s": 64.9, "Total_Year": 35592.0, "January_He": 4046.0, "February_H": 2854.0, "March_Heat": 1779.0, "April_Heat": 456.0, "May_Heatin": 37.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 93.0, "October_He": 918.0, "November_H": 2583.0, "December_H": 3978.0, "PV_potenti": 11.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205664181402609, 48.789904156324397, 0.0 ], [ 9.205571961250051, 48.789850007111795, 0.0 ], [ 9.205775216683946, 48.789700370868346, 0.0 ], [ 9.205867025194124, 48.789753711342883, 0.0 ], [ 9.205664181402609, 48.789904156324397, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002190e", "Latitude": 48.79158, "Longitude": 9.2038, "X_coordina": 3515046.84, "Y_coordina": 5406032.61, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 109.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.0, "Total_wall": 71.0, "Total_wa00": 0.0, "Total_outw": 146.7, "Total_shar": 211.2, "Total_roof": 60.6, "Gross_volu": 390.4, "Is_Gross_v": "false", "Heated_vol": 343.4, "Ridge_mean": 9.9, "Eaves_mean": 6.51, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.489, "Heated_are": 109.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 43.3, "Total_Year": 6503.0, "January_He": 1225.0, "February_H": 823.0, "March_Heat": 448.0, "April_Heat": 63.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 220.0, "November_H": 770.0, "December_H": 1204.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203805354301165, 48.791634983638588, 0.0 ], [ 9.203750480699018, 48.791628516316777, 0.0 ], [ 9.203697649654847, 48.791622315126688, 0.0 ], [ 9.203698051029114, 48.791620605868246, 0.0 ], [ 9.203701863559376, 48.791621048742414, 0.0 ], [ 9.20371540037821, 48.791569408648044, 0.0 ], [ 9.203765643711654, 48.791575164790835, 0.0 ], [ 9.203819835681474, 48.791581363541106, 0.0 ], [ 9.203805354301165, 48.791634983638588, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000217ec", "Latitude": 48.7915, "Longitude": 9.19978, "X_coordina": 3514751.28, "Y_coordina": 5406022.65, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 862.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 130.3, "Total_wall": 633.4, "Total_wa00": 0.0, "Total_outw": 854.4, "Total_shar": 332.5, "Total_roof": 224.9, "Gross_volu": 2826.0, "Is_Gross_v": "false", "Heated_vol": 2695.7, "Ridge_mean": 22.5, "Eaves_mean": 18.32, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 14, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.363, "Heated_are": 862.6, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 30.6, "Total_Year": 40063.0, "January_He": 6654.0, "February_H": 4654.0, "March_Heat": 2771.0, "April_Heat": 482.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 1186.0, "November_H": 4078.0, "December_H": 6529.0, "PV_potenti": 7.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199836945844989, 48.791514876478033, 0.0 ], [ 9.19982839783099, 48.79152145573461, 0.0 ], [ 9.199747936370619, 48.791583013150465, 0.0 ], [ 9.199727583608524, 48.7915986052354, 0.0 ], [ 9.199634685519232, 48.791544272616584, 0.0 ], [ 9.199773230692019, 48.791440889977935, 0.0 ], [ 9.199836938383008, 48.791478727201948, 0.0 ], [ 9.199810208794268, 48.79149927616583, 0.0 ], [ 9.199836945844989, 48.791514876478033, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000217d7", "Latitude": 48.79029, "Longitude": 9.21165, "X_coordina": 3515623.68, "Y_coordina": 5405890.43, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 551.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 127.3, "Total_wall": 293.5, "Total_wa00": 0.0, "Total_outw": 424.2, "Total_shar": 350.9, "Total_roof": 185.0, "Gross_volu": 1850.2, "Is_Gross_v": "false", "Heated_vol": 1722.9, "Ridge_mean": 17.1, "Eaves_mean": 11.97, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 9, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.342, "Heated_are": 551.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 36.0, "Total_Year": 28602.0, "January_He": 4831.0, "February_H": 3508.0, "March_Heat": 2194.0, "April_Heat": 427.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 1023.0, "November_H": 3102.0, "December_H": 4730.0, "PV_potenti": 8.57 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211714792241072, 48.790303333283383, 0.0 ], [ 9.211579024964783, 48.790381096964694, 0.0 ], [ 9.211535061154427, 48.790347456369119, 0.0 ], [ 9.211493008754051, 48.790315251024332, 0.0 ], [ 9.211628505691081, 48.790237937558388, 0.0 ], [ 9.21167069307163, 48.790269872835204, 0.0 ], [ 9.211714792241072, 48.790303333283383, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002162d", "Latitude": 48.79295, "Longitude": 9.20223, "X_coordina": 3514931.09, "Y_coordina": 5406184.18, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1020, "PrimaryUsa": "residential", "PrimaryU00": 915.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 171.3, "Total_wall": 605.4, "Total_wa00": 0.0, "Total_outw": 843.5, "Total_shar": 385.1, "Total_roof": 211.7, "Gross_volu": 3032.0, "Is_Gross_v": "false", "Heated_vol": 2860.7, "Ridge_mean": 19.7, "Eaves_mean": 14.62, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 15, "Number_o00": 27, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.339, "Heated_are": 915.4, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 30.6, "Total_Year": 42532.0, "January_He": 6996.0, "February_H": 4898.0, "March_Heat": 3036.0, "April_Heat": 572.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 49.0, "October_He": 1350.0, "November_H": 4308.0, "December_H": 6811.0, "PV_potenti": 9.85 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202283938114983, 48.792960622062608, 0.0 ], [ 9.202319135183931, 48.792981242654719, 0.0 ], [ 9.20231601499643, 48.792983765996787, 0.0 ], [ 9.202262145036585, 48.793024146390408, 0.0 ], [ 9.202218044246575, 48.793057045947073, 0.0 ], [ 9.202058426928755, 48.792962816441396, 0.0 ], [ 9.202102937125469, 48.792930185997498, 0.0 ], [ 9.202113928745911, 48.792922073584165, 0.0 ], [ 9.202172687123312, 48.792878897045959, 0.0 ], [ 9.202174873397867, 48.792881051373691, 0.0 ], [ 9.202159541039734, 48.792892768356459, 0.0 ], [ 9.202280682549539, 48.792963325488678, 0.0 ], [ 9.202283938114983, 48.792960622062608, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00021574", "Latitude": 48.79018, "Longitude": 9.20966, "X_coordina": 3515477.96, "Y_coordina": 5405877.72, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 1159.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 406.1, "Total_wall": 979.9, "Total_wa00": 0.0, "Total_outw": 1577.5, "Total_shar": 111.4, "Total_roof": 406.4, "Gross_volu": 4360.8, "Is_Gross_v": "false", "Heated_vol": 3954.7, "Ridge_mean": 13.0, "Eaves_mean": 9.81, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.433, "Heated_are": 1159.4, "Mean_Uvalu": 0.43, "Specific_d": "14,6", "Specific_s": 66.2, "Total_Year": 93713.0, "January_He": 17483.0, "February_H": 12909.0, "March_Heat": 9014.0, "April_Heat": 3053.0, "May_Heatin": 338.0, "June_Heati": 11, "July_Heati": 1, "August_Hea": 2, "September_": 705.0, "October_He": 4811.0, "November_H": 11452.0, "December_H": 16996.0, "PV_potenti": 17.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209797814118879, 48.79031412535695, 0.0 ], [ 9.209800279166915, 48.790317807734759, 0.0 ], [ 9.209715054767257, 48.790343411351103, 0.0 ], [ 9.209637306425286, 48.790366843128247, 0.0 ], [ 9.209574594446432, 48.790275415021448, 0.0 ], [ 9.209538035558289, 48.790222156837068, 0.0 ], [ 9.209503531242254, 48.790172042229827, 0.0 ], [ 9.209440272011248, 48.790079805729839, 0.0 ], [ 9.20960446922426, 48.790030858307432, 0.0 ], [ 9.209652255441128, 48.790100372210198, 0.0 ], [ 9.209611342121947, 48.790112586376232, 0.0 ], [ 9.209627770631167, 48.790135936615684, 0.0 ], [ 9.209651318687159, 48.790169525185206, 0.0 ], [ 9.209654446574287, 48.790168979949044, 0.0 ], [ 9.209665537902824, 48.790185235932803, 0.0 ], [ 9.209676355928734, 48.790201222642182, 0.0 ], [ 9.209673092696246, 48.790201947972605, 0.0 ], [ 9.209698693074778, 48.790238140580534, 0.0 ], [ 9.209713614898893, 48.790259155536546, 0.0 ], [ 9.209752485417487, 48.790246585360762, 0.0 ], [ 9.209797814118879, 48.79031412535695, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00021575", "Latitude": 48.79037, "Longitude": 9.2098, "X_coordina": 3515488.15, "Y_coordina": 5405898.79, "LOD": "LOD2", "Year_of_co": 1994, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 280.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 171.3, "Total_wall": 98.1, "Total_wa00": 0.0, "Total_outw": 246.4, "Total_shar": 196.8, "Total_roof": 172.6, "Gross_volu": 612.0, "Is_Gross_v": "false", "Heated_vol": 612.0, "Ridge_mean": 4.0, "Eaves_mean": 4.01, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.722, "Heated_are": 280.8, "Mean_Uvalu": 0.35, "Specific_d": "14,6", "Specific_s": 44.8, "Total_Year": 16691.0, "January_He": 2875.0, "February_H": 2147.0, "March_Heat": 1517.0, "April_Heat": 503.0, "May_Heatin": 45.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 98.0, "October_He": 760.0, "November_H": 1870.0, "December_H": 2772.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209800279166915, 48.790317807734759, 0.0 ], [ 9.209797814118879, 48.79031412535695, 0.0 ], [ 9.20980950426355, 48.790310776885342, 0.0 ], [ 9.2098820690704, 48.790415045985448, 0.0 ], [ 9.20983136769207, 48.790429885852404, 0.0 ], [ 9.20982945188449, 48.79042737148167, 0.0 ], [ 9.209781607318305, 48.790441936350547, 0.0 ], [ 9.209710112416902, 48.790463738159488, 0.0 ], [ 9.209704947604445, 48.7904653661898, 0.0 ], [ 9.209637306425286, 48.790366843128247, 0.0 ], [ 9.209715054767257, 48.790343411351103, 0.0 ], [ 9.209800279166915, 48.790317807734759, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002126b", "Latitude": 48.79357, "Longitude": 9.19846, "X_coordina": 3514653.4, "Y_coordina": 5406252.86, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2612, "PrimaryUsa": "non-heated", "PrimaryU00": 30.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 38.8, "Total_wall": 45.6, "Total_wa00": 0.0, "Total_outw": 146.9, "Total_shar": 86.3, "Total_roof": 38.8, "Gross_volu": 118.3, "Is_Gross_v": "false", "Heated_vol": 96.5, "Ridge_mean": 3.1, "Eaves_mean": 3.06, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.128, "Heated_are": 30.9, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198464427442515, 48.793591517502271, 0.0 ], [ 9.198396014907393, 48.793638035949215, 0.0 ], [ 9.198360947639006, 48.793615525542826, 0.0 ], [ 9.19839542612767, 48.793592265865811, 0.0 ], [ 9.198359267238661, 48.793569037950832, 0.0 ], [ 9.198392114599201, 48.793546320625687, 0.0 ], [ 9.198464427442515, 48.793591517502271, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002126c", "Latitude": 48.79356, "Longitude": 9.19837, "X_coordina": 3514647.05, "Y_coordina": 5406251.73, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2055, "PrimaryUsa": "non-heated", "PrimaryU00": 82.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 65.5, "Total_wall": 101.6, "Total_wa00": 0.0, "Total_outw": 256.1, "Total_shar": 86.8, "Total_roof": 77.3, "Gross_volu": 322.9, "Is_Gross_v": "false", "Heated_vol": 257.3, "Ridge_mean": 6.5, "Eaves_mean": 3.88, "Storey_num": 2, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.837, "Heated_are": 82.3, "Mean_Uvalu": 0.5, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198292312445744, 48.793571041657444, 0.0 ], [ 9.198290538511449, 48.793569875705607, 0.0 ], [ 9.198324336136858, 48.793546527298467, 0.0 ], [ 9.198356641217567, 48.793524350458725, 0.0 ], [ 9.198392114599201, 48.793546320625687, 0.0 ], [ 9.198359267238661, 48.793569037950832, 0.0 ], [ 9.19839542612767, 48.793592265865811, 0.0 ], [ 9.198360947639006, 48.793615525542826, 0.0 ], [ 9.198360133152638, 48.793616066487232, 0.0 ], [ 9.198324704041951, 48.793639867332203, 0.0 ], [ 9.198255385856328, 48.793594755136283, 0.0 ], [ 9.198291361857242, 48.793571582835725, 0.0 ], [ 9.198292312445744, 48.793571041657444, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00021154", "Latitude": 48.78849, "Longitude": 9.2127, "X_coordina": 3515701.53, "Y_coordina": 5405690.2, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 111.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.0, "Total_wall": 130.1, "Total_wa00": 0.0, "Total_outw": 238.6, "Total_shar": 118.0, "Total_roof": 56.5, "Gross_volu": 387.2, "Is_Gross_v": "false", "Heated_vol": 347.2, "Ridge_mean": 11.0, "Eaves_mean": 7.9, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.636, "Heated_are": 111.1, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 46.4, "Total_Year": 6919.0, "January_He": 1406.0, "February_H": 847.0, "March_Heat": 426.0, "April_Heat": 76.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 192.0, "November_H": 780.0, "December_H": 1422.0, "PV_potenti": 1.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212654239124321, 48.788529207426492, 0.0 ], [ 9.212595301847932, 48.788526708457425, 0.0 ], [ 9.212599878049753, 48.788482457571781, 0.0 ], [ 9.2127161202063, 48.788487638337649, 0.0 ], [ 9.212710862524146, 48.788531620715666, 0.0 ], [ 9.212654239124321, 48.788529207426492, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002112a", "Latitude": 48.79232, "Longitude": 9.20255, "X_coordina": 3514954.4, "Y_coordina": 5406114.14, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 1372.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 290.0, "Total_wall": 602.8, "Total_wa00": 0.0, "Total_outw": 957.5, "Total_shar": 484.3, "Total_roof": 393.7, "Gross_volu": 4577.5, "Is_Gross_v": "false", "Heated_vol": 4287.5, "Ridge_mean": 18.7, "Eaves_mean": 12.87, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.292, "Heated_are": 1372.0, "Mean_Uvalu": 0.47, "Specific_d": "73,0", "Specific_s": 45.8, "Total_Year": 162952.0, "January_He": 14446.0, "February_H": 10674.0, "March_Heat": 7526.0, "April_Heat": 2553.0, "May_Heatin": 253.0, "June_Heati": 7, "July_Heati": 1, "August_Hea": 1, "September_": 486.0, "October_He": 3685.0, "November_H": 9205.0, "December_H": 13947.0, "PV_potenti": 19.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202587495945751, 48.792432596682787, 0.0 ], [ 9.202565106942195, 48.792449361855425, 0.0 ], [ 9.202491846252878, 48.792405877757616, 0.0 ], [ 9.202493747295435, 48.792404795331741, 0.0 ], [ 9.202454456738913, 48.792381484279836, 0.0 ], [ 9.202452827532325, 48.79238247630358, 0.0 ], [ 9.202328959784687, 48.792310575281377, 0.0 ], [ 9.20238432131182, 48.792269023223369, 0.0 ], [ 9.202442125645938, 48.792225758295885, 0.0 ], [ 9.202678139514886, 48.792365264263417, 0.0 ], [ 9.202631732047321, 48.792399696743011, 0.0 ], [ 9.202620198401032, 48.792408349701716, 0.0 ], [ 9.202587495945751, 48.792432596682787, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020f71", "Latitude": 48.78846, "Longitude": 9.2094, "X_coordina": 3515459.11, "Y_coordina": 5405686.93, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 98.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.5, "Total_wall": 63.7, "Total_wa00": 0.0, "Total_outw": 145.8, "Total_shar": 203.4, "Total_roof": 59.9, "Gross_volu": 354.7, "Is_Gross_v": "false", "Heated_vol": 307.2, "Ridge_mean": 9.2, "Eaves_mean": 5.63, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.519, "Heated_are": 98.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 46.7, "Total_Year": 6148.0, "January_He": 1163.0, "February_H": 789.0, "March_Heat": 452.0, "April_Heat": 78.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 224.0, "November_H": 732.0, "December_H": 1142.0, "PV_potenti": 1.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209313019876479, 48.788508081927901, 0.0 ], [ 9.209294922371816, 48.788508654362055, 0.0 ], [ 9.209291058767347, 48.788463160015233, 0.0 ], [ 9.20930888370531, 48.788462498153415, 0.0 ], [ 9.209362358890401, 48.788460602474437, 0.0 ], [ 9.20941814757078, 48.788458702563581, 0.0 ], [ 9.209422147752175, 48.788504286581478, 0.0 ], [ 9.20936622330723, 48.78850627666472, 0.0 ], [ 9.209313019876479, 48.788508081927901, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020f49", "Latitude": 48.78788, "Longitude": 9.19646, "X_coordina": 3514508.03, "Y_coordina": 5405620.02, "LOD": "LOD2", "Year_of_co": 1968, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 456.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 124.3, "Total_wall": 426.2, "Total_wa00": 0.0, "Total_outw": 679.4, "Total_shar": 113.0, "Total_roof": 145.4, "Gross_volu": 1460.7, "Is_Gross_v": "false", "Heated_vol": 1425.7, "Ridge_mean": 13.3, "Eaves_mean": 9.73, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 6, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.484, "Heated_are": 456.2, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 46.5, "Total_Year": 28460.0, "January_He": 5210.0, "February_H": 3669.0, "March_Heat": 2261.0, "April_Heat": 461.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 1131.0, "November_H": 3322.0, "December_H": 5101.0, "PV_potenti": 7.33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196514844058537, 48.787900088326175, 0.0 ], [ 9.196519889804408, 48.787902777425167, 0.0 ], [ 9.196486376070842, 48.787928372933344, 0.0 ], [ 9.196460189233969, 48.787948380664901, 0.0 ], [ 9.196424233595163, 48.787975958641276, 0.0 ], [ 9.196302449391908, 48.787909892572252, 0.0 ], [ 9.196307468118615, 48.787905657604774, 0.0 ], [ 9.196340570159704, 48.78787916361388, 0.0 ], [ 9.196370958502698, 48.787854742485194, 0.0 ], [ 9.196397141466358, 48.787833745619906, 0.0 ], [ 9.196401643203725, 48.787836525575578, 0.0 ], [ 9.196399472485288, 48.787838237827373, 0.0 ], [ 9.196454163275677, 48.787868898429828, 0.0 ], [ 9.196512127940622, 48.787901531739841, 0.0 ], [ 9.196514844058537, 48.787900088326175, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020f4a", "Latitude": 48.78787, "Longitude": 9.19624, "X_coordina": 3514492.41, "Y_coordina": 5405618.55, "LOD": "LOD2", "Year_of_co": 1968, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 59.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 74.8, "Total_wall": 101.1, "Total_wa00": 0.0, "Total_outw": 134.6, "Total_shar": 0.0, "Total_roof": 74.8, "Gross_volu": 192.4, "Is_Gross_v": "false", "Heated_vol": 186.9, "Ridge_mean": 2.6, "Eaves_mean": 2.57, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.318, "Heated_are": 59.8, "Mean_Uvalu": 0.36, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196240655735293, 48.787938782457928, 0.0 ], [ 9.196226972327398, 48.787919643043772, 0.0 ], [ 9.196191345643987, 48.787930395670372, 0.0 ], [ 9.196167408048446, 48.787895546070793, 0.0 ], [ 9.196132189699837, 48.787906315968272, 0.0 ], [ 9.196110976051102, 48.787875508282085, 0.0 ], [ 9.19622761568726, 48.787840329278893, 0.0 ], [ 9.196286041807708, 48.787925027715715, 0.0 ], [ 9.19627902834984, 48.787937718906271, 0.0 ], [ 9.196259712809312, 48.787943497949477, 0.0 ], [ 9.196240655735293, 48.787938782457928, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020f19", "Latitude": 48.79066, "Longitude": 9.20551, "X_coordina": 3515172.56, "Y_coordina": 5405930.65, "LOD": "LOD2", "Year_of_co": 1973, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 223.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 86.7, "Total_wall": 165.6, "Total_wa00": 0.0, "Total_outw": 312.5, "Total_shar": 163.1, "Total_roof": 144.9, "Gross_volu": 784.9, "Is_Gross_v": "false", "Heated_vol": 698.2, "Ridge_mean": 11.9, "Eaves_mean": 5.96, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 3, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.537, "Heated_are": 223.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 46.4, "Total_Year": 13914.0, "January_He": 2597.0, "February_H": 1767.0, "March_Heat": 1061.0, "April_Heat": 228.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 506.0, "November_H": 1605.0, "December_H": 2575.0, "PV_potenti": 6.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205466261226654, 48.790727490629784, 0.0 ], [ 9.205403925236213, 48.790726432825501, 0.0 ], [ 9.205404801919034, 48.790707817072928, 0.0 ], [ 9.205407523805258, 48.790707812217967, 0.0 ], [ 9.205410498262513, 48.790636317635787, 0.0 ], [ 9.20547106491798, 48.790637378593466, 0.0 ], [ 9.205527820573195, 48.790638356397345, 0.0 ], [ 9.205525943325407, 48.790678555605261, 0.0 ], [ 9.205523696353408, 48.790728197452545, 0.0 ], [ 9.20552369745517, 48.790728467221442, 0.0 ], [ 9.205466261226654, 48.790727490629784, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020eac", "Latitude": 48.79242, "Longitude": 9.19844, "X_coordina": 3514652.91, "Y_coordina": 5406124.8, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 131.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 48.8, "Total_wall": 69.6, "Total_wa00": 0.0, "Total_outw": 147.3, "Total_shar": 320.7, "Total_roof": 81.0, "Gross_volu": 460.5, "Is_Gross_v": "false", "Heated_vol": 411.7, "Ridge_mean": 12.8, "Eaves_mean": 5.98, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.46, "Heated_are": 131.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.4, "Total_Year": 7667.0, "January_He": 1365.0, "February_H": 959.0, "March_Heat": 606.0, "April_Heat": 137.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 292.0, "November_H": 860.0, "December_H": 1341.0, "PV_potenti": 2.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19841057252866, 48.792394097976889, 0.0 ], [ 9.198413436988574, 48.79239571166611, 0.0 ], [ 9.198412215998552, 48.792396702929345, 0.0 ], [ 9.198439499972814, 48.792412932086137, 0.0 ], [ 9.198460941899542, 48.792397248430298, 0.0 ], [ 9.198479084912227, 48.792407828144739, 0.0 ], [ 9.198461985032175, 48.792420177148031, 0.0 ], [ 9.198439185651905, 48.792436762379076, 0.0 ], [ 9.198412043141493, 48.792456412490843, 0.0 ], [ 9.198369565009923, 48.79248714961593, 0.0 ], [ 9.198364517642, 48.792484190832049, 0.0 ], [ 9.198365874734245, 48.792483199334882, 0.0 ], [ 9.198326041626455, 48.792459887810573, 0.0 ], [ 9.198324820633156, 48.792460879072877, 0.0 ], [ 9.19832209262588, 48.792459355070072, 0.0 ], [ 9.198364296792581, 48.792428168816301, 0.0 ], [ 9.19841057252866, 48.792394097976889, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020dbb", "Latitude": 48.79074, "Longitude": 9.19701, "X_coordina": 3514547.87, "Y_coordina": 5405937.43, "LOD": "LOD2", "Year_of_co": 2012, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 10247.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1733.5, "Total_wall": 4025.9, "Total_wa00": 0.0, "Total_outw": 5353.2, "Total_shar": 1067.1, "Total_roof": 1920.7, "Gross_volu": 33757.4, "Is_Gross_v": "false", "Heated_vol": 32023.9, "Ridge_mean": 22.7, "Eaves_mean": 17.75, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.235, "Heated_are": 10247.6, "Mean_Uvalu": 0.43, "Specific_d": "14,6", "Specific_s": 49.1, "Total_Year": 652895.0, "January_He": 111749.0, "February_H": 84491.0, "March_Heat": 62184.0, "April_Heat": 24076.0, "May_Heatin": 2991.0, "June_Heati": 105, "July_Heati": 11, "August_Hea": 21, "September_": 5287.0, "October_He": 31827.0, "November_H": 72786.0, "December_H": 107651.0, "PV_potenti": 91.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197472253383173, 48.790890929296943, 0.0 ], [ 9.19761124693019, 48.79097036318403, 0.0 ], [ 9.19734676075624, 48.79116541144225, 0.0 ], [ 9.197210894813491, 48.791085342417425, 0.0 ], [ 9.19725635317587, 48.791051183509673, 0.0 ], [ 9.197319181240999, 48.791004135745602, 0.0 ], [ 9.197162718578468, 48.790912142111893, 0.0 ], [ 9.197122068236144, 48.790888202099161, 0.0 ], [ 9.197077871367494, 48.790862199898463, 0.0 ], [ 9.196924956138565, 48.790772268111759, 0.0 ], [ 9.196884169927619, 48.790748328246892, 0.0 ], [ 9.196839973304487, 48.790722325953951, 0.0 ], [ 9.196687468261825, 48.790632662919712, 0.0 ], [ 9.196647636692614, 48.790609170958113, 0.0 ], [ 9.196603576759042, 48.790583258264093, 0.0 ], [ 9.196449708460632, 48.790492787928024, 0.0 ], [ 9.196401127965547, 48.790529020089089, 0.0 ], [ 9.196317511208393, 48.790480154297512, 0.0 ], [ 9.196491208426277, 48.790351087420511, 0.0 ], [ 9.196736468651514, 48.79049499607904, 0.0 ], [ 9.196809446596443, 48.790537764943501, 0.0 ], [ 9.197444839489028, 48.790910669575212, 0.0 ], [ 9.197472253383173, 48.790890929296943, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020dbd", "Latitude": 48.79096, "Longitude": 9.19725, "X_coordina": 3514565.66, "Y_coordina": 5405962.33, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 86.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 108.1, "Total_wall": 46.4, "Total_wa00": 0.0, "Total_outw": 152.5, "Total_shar": 221.7, "Total_roof": 108.1, "Gross_volu": 350.1, "Is_Gross_v": "false", "Heated_vol": 270.0, "Ridge_mean": 3.2, "Eaves_mean": 3.24, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.789, "Heated_are": 86.4, "Mean_Uvalu": 0.3, "Specific_d": "32,9", "Specific_s": 21.1, "Total_Year": 4661.0, "January_He": 531.0, "February_H": 353.0, "March_Heat": 163.0, "April_Heat": 15.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 24.0, "November_H": 241.0, "December_H": 493.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197114405804573, 48.79094720510566, 0.0 ], [ 9.197162718578468, 48.790912142111893, 0.0 ], [ 9.197319181240999, 48.791004135745602, 0.0 ], [ 9.19725635317587, 48.791051183509673, 0.0 ], [ 9.197095796711103, 48.790956409166284, 0.0 ], [ 9.197110313795614, 48.790944874096034, 0.0 ], [ 9.197114405804573, 48.79094720510566, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020dbf", "Latitude": 48.79082, "Longitude": 9.19701, "X_coordina": 3514548.03, "Y_coordina": 5405946.78, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 86.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 107.5, "Total_wall": 50.9, "Total_wa00": 0.0, "Total_outw": 156.9, "Total_shar": 197.5, "Total_roof": 107.5, "Gross_volu": 292.9, "Is_Gross_v": "false", "Heated_vol": 269.2, "Ridge_mean": 2.7, "Eaves_mean": 2.72, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.923, "Heated_are": 86.2, "Mean_Uvalu": 0.3, "Specific_d": "14,6", "Specific_s": 84.5, "Total_Year": 8542.0, "January_He": 1523.0, "February_H": 1193.0, "March_Heat": 927.0, "April_Heat": 409.0, "May_Heatin": 71.0, "June_Heati": 3, "July_Heati": 0, "August_Hea": 1, "September_": 120.0, "October_He": 518.0, "November_H": 1054.0, "December_H": 1465.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197029698550116, 48.790898251777243, 0.0 ], [ 9.197034063093454, 48.790900672247048, 0.0 ], [ 9.197019001624426, 48.79091220823917, 0.0 ], [ 9.196855992123572, 48.790816358672963, 0.0 ], [ 9.196872413844245, 48.790804640529217, 0.0 ], [ 9.196878004279236, 48.790807328679968, 0.0 ], [ 9.196924956138565, 48.790772268111759, 0.0 ], [ 9.197077871367494, 48.790862199898463, 0.0 ], [ 9.197029698550116, 48.790898251777243, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020dc1", "Latitude": 48.79068, "Longitude": 9.19678, "X_coordina": 3514530.75, "Y_coordina": 5405931.21, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 84.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 105.0, "Total_wall": 47.9, "Total_wa00": 0.0, "Total_outw": 148.3, "Total_shar": 205.2, "Total_roof": 105.0, "Gross_volu": 288.7, "Is_Gross_v": "false", "Heated_vol": 262.5, "Ridge_mean": 2.8, "Eaves_mean": 2.75, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.91, "Heated_are": 84.0, "Mean_Uvalu": 0.3, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196622454477623, 48.790677645831266, 0.0 ], [ 9.196636973347511, 48.790666560435113, 0.0 ], [ 9.196640519880654, 48.790668622622256, 0.0 ], [ 9.196687468261825, 48.790632662919712, 0.0 ], [ 9.196839973304487, 48.790722325953951, 0.0 ], [ 9.196790711342167, 48.790758289671814, 0.0 ], [ 9.196796985405353, 48.790761785970794, 0.0 ], [ 9.196783145961215, 48.790772600455028, 0.0 ], [ 9.196622454477623, 48.790677645831266, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020dc3", "Latitude": 48.79054, "Longitude": 9.19655, "X_coordina": 3514513.97, "Y_coordina": 5405915.53, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 82.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 102.3, "Total_wall": 46.2, "Total_wa00": 0.0, "Total_outw": 85.2, "Total_shar": 120.9, "Total_roof": 102.3, "Gross_volu": 276.5, "Is_Gross_v": "false", "Heated_vol": 256.6, "Ridge_mean": 2.7, "Eaves_mean": 2.69, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.92, "Heated_are": 82.1, "Mean_Uvalu": 0.3, "Specific_d": "14,6", "Specific_s": 83.7, "Total_Year": 8071.0, "January_He": 1437.0, "February_H": 1126.0, "March_Heat": 875.0, "April_Heat": 386.0, "May_Heatin": 67.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 1, "September_": 113.0, "October_He": 489.0, "November_H": 995.0, "December_H": 1382.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19640112793045, 48.79052901109678, 0.0 ], [ 9.196449708460632, 48.790492787928024, 0.0 ], [ 9.196603590368449, 48.790583258240865, 0.0 ], [ 9.196554722694527, 48.79061913126192, 0.0 ], [ 9.196558119201287, 48.790621112776435, 0.0 ], [ 9.196543882226324, 48.79063119952945, 0.0 ], [ 9.196406536629606, 48.79055140184542, 0.0 ], [ 9.196420635023594, 48.790540676887908, 0.0 ], [ 9.19640112793045, 48.79052901109678, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020bfe", "Latitude": 48.79062, "Longitude": 9.19828, "X_coordina": 3514641.51, "Y_coordina": 5405924.73, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1425.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 217.1, "Total_wall": 1029.3, "Total_wa00": 0.0, "Total_outw": 1350.0, "Total_shar": 0.0, "Total_roof": 337.6, "Gross_volu": 4561.4, "Is_Gross_v": "false", "Heated_vol": 4455.5, "Ridge_mean": 26.0, "Eaves_mean": 18.09, "Storey_num": 10, "Average_St": 2.6, "Number_of_": 26, "Number_o00": 44, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.354, "Heated_are": 1425.8, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 73453.0, "January_He": 12413.0, "February_H": 8848.0, "March_Heat": 5650.0, "April_Heat": 1229.0, "May_Heatin": 38.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 126.0, "October_He": 2640.0, "November_H": 7806.0, "December_H": 12120.0, "PV_potenti": 15.39 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198281110706029, 48.790728396287477, 0.0 ], [ 9.198244643067667, 48.790729897851335, 0.0 ], [ 9.19809432044778, 48.790642121317518, 0.0 ], [ 9.198124853130969, 48.790619587885836, 0.0 ], [ 9.198214143795107, 48.790553610138495, 0.0 ], [ 9.19838274658421, 48.790652415631961, 0.0 ], [ 9.198281110706029, 48.790728396287477, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020acd", "Latitude": 48.79057, "Longitude": 9.21415, "X_coordina": 3515807.7, "Y_coordina": 5405921.72, "LOD": "LOD2", "Year_of_co": 2009, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 504.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 160.3, "Total_wall": 333.9, "Total_wa00": 0.0, "Total_outw": 568.8, "Total_shar": 189.7, "Total_roof": 188.1, "Gross_volu": 1738.0, "Is_Gross_v": "false", "Heated_vol": 1577.7, "Ridge_mean": 12.6, "Eaves_mean": 9.32, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 6, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.415, "Heated_are": 504.9, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 38.4, "Total_Year": 27404.0, "January_He": 4705.0, "February_H": 3380.0, "March_Heat": 2157.0, "April_Heat": 434.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 51.0, "October_He": 1061.0, "November_H": 3047.0, "December_H": 4562.0, "PV_potenti": 8.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214169186834756, 48.790512003862162, 0.0 ], [ 9.214192628499577, 48.790647744933615, 0.0 ], [ 9.214081891532999, 48.790658202134573, 0.0 ], [ 9.21405318523961, 48.790660503585208, 0.0 ], [ 9.214052096869228, 48.790660595531783, 0.0 ], [ 9.214046109428223, 48.790628773698792, 0.0 ], [ 9.214026338541476, 48.790524049424981, 0.0 ], [ 9.21410048361477, 48.790517796798156, 0.0 ], [ 9.214169186834756, 48.790512003862162, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020ace", "Latitude": 48.79064, "Longitude": 9.21405, "X_coordina": 3515799.93, "Y_coordina": 5405929.55, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 34.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 38.4, "Total_wall": 49.7, "Total_wa00": 0.0, "Total_outw": 154.0, "Total_shar": 62.0, "Total_roof": 38.4, "Gross_volu": 144.6, "Is_Gross_v": "false", "Heated_vol": 106.2, "Ridge_mean": 3.8, "Eaves_mean": 3.78, "Storey_num": 1, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.998, "Heated_are": 34.0, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 30.7, "Total_Year": 2160.0, "January_He": 312.0, "February_H": 186.0, "March_Heat": 81.0, "April_Heat": 8.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 137.0, "December_H": 303.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213952097513316, 48.79063578259035, 0.0 ], [ 9.213975906706104, 48.790634029805695, 0.0 ], [ 9.214046109428223, 48.790628773698792, 0.0 ], [ 9.214052096869228, 48.790660595531783, 0.0 ], [ 9.21405318523961, 48.790660503585208, 0.0 ], [ 9.214055979794431, 48.790677583878754, 0.0 ], [ 9.213960744471537, 48.790684954745757, 0.0 ], [ 9.213955723889326, 48.790656458285831, 0.0 ], [ 9.213952097513316, 48.79063578259035, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020a1d", "Latitude": 48.78794, "Longitude": 9.21475, "X_coordina": 3515852.68, "Y_coordina": 5405630.15, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 562.4, "SecondaryU": "retail", "Secondar00": 139.6, "BuildingTy": "MFH", "Footprint_": 174.5, "Total_wall": 534.5, "Total_wa00": 0.0, "Total_outw": 777.2, "Total_shar": 179.0, "Total_roof": 195.3, "Gross_volu": 2368.5, "Is_Gross_v": "false", "Heated_vol": 2194.0, "Ridge_mean": 14.9, "Eaves_mean": 11.93, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 9, "Number_o00": 22, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.401, "Heated_are": 702.1, "Mean_Uvalu": 0.49, "Specific_d": "27,2", "Specific_s": 41.3, "Total_Year": 48087.0, "January_He": 6983.0, "February_H": 5007.0, "March_Heat": 3298.0, "April_Heat": 806.0, "May_Heatin": 35.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 98.0, "October_He": 1521.0, "November_H": 4399.0, "December_H": 6838.0, "PV_potenti": 10.13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214820651042324, 48.787956329565084, 0.0 ], [ 9.214829667873198, 48.787996418698413, 0.0 ], [ 9.214830917604598, 48.788002261405111, 0.0 ], [ 9.214773511181358, 48.788007584052686, 0.0 ], [ 9.214771581021898, 48.788001742614313, 0.0 ], [ 9.21466601669448, 48.788011111651322, 0.0 ], [ 9.214666854310973, 48.788016055891376, 0.0 ], [ 9.214608905040283, 48.788021739163455, 0.0 ], [ 9.214599582849033, 48.78797382722346, 0.0 ], [ 9.21458984244704, 48.787923578046367, 0.0 ], [ 9.214603310046554, 48.787922383942842, 0.0 ], [ 9.214642761384887, 48.78791907316716, 0.0 ], [ 9.214759890204766, 48.787909053120245, 0.0 ], [ 9.214808999836938, 48.787904825039384, 0.0 ], [ 9.214809830941128, 48.787908240588358, 0.0 ], [ 9.214820651042324, 48.787956329565084, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020a0d", "Latitude": 48.78859, "Longitude": 9.21391, "X_coordina": 3515790.35, "Y_coordina": 5405701.54, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 101.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.5, "Total_wall": 55.6, "Total_wa00": 0.0, "Total_outw": 124.1, "Total_shar": 223.6, "Total_roof": 61.0, "Gross_volu": 363.7, "Is_Gross_v": "false", "Heated_vol": 316.2, "Ridge_mean": 9.5, "Eaves_mean": 5.85, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.481, "Heated_are": 101.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.5, "Total_Year": 6313.0, "January_He": 1169.0, "February_H": 817.0, "March_Heat": 481.0, "April_Heat": 84.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 11.0, "October_He": 246.0, "November_H": 754.0, "December_H": 1146.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213935922650899, 48.78859166853168, 0.0 ], [ 9.213906329088941, 48.788641091588715, 0.0 ], [ 9.213850064486687, 48.788627078069581, 0.0 ], [ 9.213793936004237, 48.788613064270237, 0.0 ], [ 9.213818531827231, 48.788572463039117, 0.0 ], [ 9.213875865578711, 48.7885818884819, 0.0 ], [ 9.213935922650899, 48.78859166853168, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000209ed", "Latitude": 48.79042, "Longitude": 9.1986, "X_coordina": 3514665.21, "Y_coordina": 5405902.35, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1187.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 192.8, "Total_wall": 559.3, "Total_wa00": 0.0, "Total_outw": 733.9, "Total_shar": 505.5, "Total_roof": 295.1, "Gross_volu": 3905.0, "Is_Gross_v": "false", "Heated_vol": 3712.2, "Ridge_mean": 23.8, "Eaves_mean": 17.25, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 22, "Number_o00": 31, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.277, "Heated_are": 1187.9, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 33.1, "Total_Year": 58148.0, "January_He": 9660.0, "February_H": 6959.0, "March_Heat": 4315.0, "April_Heat": 791.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 72.0, "October_He": 1986.0, "November_H": 6125.0, "December_H": 9406.0, "PV_potenti": 14.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198571134992184, 48.790350307266955, 0.0 ], [ 9.198671395822812, 48.790408944385639, 0.0 ], [ 9.19869390345351, 48.790422124324799, 0.0 ], [ 9.19854938704743, 48.790529652466375, 0.0 ], [ 9.198488003276555, 48.790493878762227, 0.0 ], [ 9.198439851177161, 48.79046581565612, 0.0 ], [ 9.19842648314458, 48.790458015336526, 0.0 ], [ 9.198571134992184, 48.790350307266955, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002092c", "Latitude": 48.78946, "Longitude": 9.20586, "X_coordina": 3515198.53, "Y_coordina": 5405797.34, "LOD": "LOD2", "Year_of_co": 1971, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 154.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 85.6, "Total_wall": 201.2, "Total_wa00": 0.0, "Total_outw": 331.5, "Total_shar": 0.0, "Total_roof": 85.6, "Gross_volu": 418.3, "Is_Gross_v": "false", "Heated_vol": 418.3, "Ridge_mean": 4.9, "Eaves_mean": 4.88, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.891, "Heated_are": 154.7, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205916022580631, 48.789455347043145, 0.0 ], [ 9.205899597152694, 48.789465537783329, 0.0 ], [ 9.205768328478019, 48.789546793608174, 0.0 ], [ 9.2057127849891, 48.789509124913728, 0.0 ], [ 9.205861437235903, 48.789419025561031, 0.0 ], [ 9.205916022580631, 48.789455347043145, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0002092d", "Latitude": 48.78931, "Longitude": 9.2057, "X_coordina": 3515186.56, "Y_coordina": 5405780.57, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 803.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 158.9, "Total_wall": 727.9, "Total_wa00": 0.0, "Total_outw": 1013.6, "Total_shar": 0.0, "Total_roof": 215.1, "Gross_volu": 2577.0, "Is_Gross_v": "false", "Heated_vol": 2509.9, "Ridge_mean": 16.9, "Eaves_mean": 13.84, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 13, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.436, "Heated_are": 803.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 40.4, "Total_Year": 45171.0, "January_He": 8113.0, "February_H": 5623.0, "March_Heat": 3358.0, "April_Heat": 618.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 70.0, "October_He": 1614.0, "November_H": 5075.0, "December_H": 7960.0, "PV_potenti": 8.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205773594772481, 48.789336992351387, 0.0 ], [ 9.205678214147174, 48.789408382266167, 0.0 ], [ 9.205644655338615, 48.789388748921787, 0.0 ], [ 9.20562878085406, 48.789400557265118, 0.0 ], [ 9.20556056320024, 48.789358504868453, 0.0 ], [ 9.205528364642348, 48.789338689214688, 0.0 ], [ 9.205638126840228, 48.789256482906083, 0.0 ], [ 9.205773594772481, 48.789336992351387, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020511", "Latitude": 48.78798, "Longitude": 9.20144, "X_coordina": 3514874.03, "Y_coordina": 5405631.33, "LOD": "LOD2", "Year_of_co": 2010, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 133.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.2, "Total_wall": 133.1, "Total_wa00": 0.0, "Total_outw": 240.6, "Total_shar": 129.4, "Total_roof": 49.2, "Gross_volu": 328.1, "Is_Gross_v": "false", "Heated_vol": 328.1, "Ridge_mean": 6.7, "Eaves_mean": 6.69, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.705, "Heated_are": 133.9, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 40.5, "Total_Year": 7543.0, "January_He": 1367.0, "February_H": 937.0, "March_Heat": 556.0, "April_Heat": 116.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 12.0, "October_He": 247.0, "November_H": 815.0, "December_H": 1366.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201313154402818, 48.788000607611572, 0.0 ], [ 9.201443492695676, 48.78795811556504, 0.0 ], [ 9.201471402379756, 48.787995025363564, 0.0 ], [ 9.201341065094386, 48.788037787210612, 0.0 ], [ 9.201313154402818, 48.788000607611572, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000204f2", "Latitude": 48.78975, "Longitude": 9.20972, "X_coordina": 3515481.93, "Y_coordina": 5405830.4, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2081, "PrimaryUsa": "restaurant", "PrimaryU00": 942.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 530.5, "Total_wall": 612.2, "Total_wa00": 0.0, "Total_outw": 1222.3, "Total_shar": 0.0, "Total_roof": 534.0, "Gross_volu": 3227.7, "Is_Gross_v": "false", "Heated_vol": 2946.5, "Ridge_mean": 8.2, "Eaves_mean": 5.57, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.537, "Heated_are": 942.9, "Mean_Uvalu": 0.62, "Specific_d": "334,5", "Specific_s": 199.5, "Total_Year": 503484.99999999994, "January_He": 41807.0, "February_H": 32174.0, "March_Heat": 23960.0, "April_Heat": 9789.0, "May_Heatin": 986.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 1603.0, "October_He": 11188.0, "November_H": 26743.0, "December_H": 39858.0, "PV_potenti": 24.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209503799361187, 48.789680699023172, 0.0 ], [ 9.209700072682274, 48.789622071273641, 0.0 ], [ 9.209867263570914, 48.789867168305008, 0.0 ], [ 9.209670983496773, 48.789924357570897, 0.0 ], [ 9.209613332880158, 48.789839035069967, 0.0 ], [ 9.209527830271316, 48.789863020431085, 0.0 ], [ 9.209478261409604, 48.789790182542156, 0.0 ], [ 9.209563354145624, 48.789765838268821, 0.0 ], [ 9.209503799361187, 48.789680699023172, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00020324", "Latitude": 48.79231, "Longitude": 9.21536, "X_coordina": 3515895.51, "Y_coordina": 5406115.92, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 343.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 265.7, "Total_wall": 288.0, "Total_wa00": 0.0, "Total_outw": 787.0, "Total_shar": 0.0, "Total_roof": 304.3, "Gross_volu": 1262.6, "Is_Gross_v": "false", "Heated_vol": 1072.4, "Ridge_mean": 5.8, "Eaves_mean": 3.53, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 4, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.729, "Heated_are": 343.2, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 59.0, "Total_Year": 25669.0, "January_He": 5088.0, "February_H": 3430.0, "March_Heat": 2017.0, "April_Heat": 428.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 62.0, "October_He": 1003.0, "November_H": 3146.0, "December_H": 5039.0, "PV_potenti": 15.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215190298514859, 48.792324399093694, 0.0 ], [ 9.215166440120102, 48.79231482184764, 0.0 ], [ 9.215168878743919, 48.792312209507145, 0.0 ], [ 9.215134249352914, 48.792298156198477, 0.0 ], [ 9.215131810727975, 48.792300768538261, 0.0 ], [ 9.215106861645545, 48.792290743699326, 0.0 ], [ 9.215109299886899, 48.792288041437196, 0.0 ], [ 9.215083260105766, 48.79227756901242, 0.0 ], [ 9.215109948498799, 48.792248743614465, 0.0 ], [ 9.21513663686132, 48.792219918210257, 0.0 ], [ 9.215540734783113, 48.792383183242585, 0.0 ], [ 9.215513910467168, 48.792412008994006, 0.0 ], [ 9.215487222219457, 48.792440834484431, 0.0 ], [ 9.215461045411988, 48.792430182554497, 0.0 ], [ 9.215458606797654, 48.79243279490111, 0.0 ], [ 9.215435156982185, 48.792423306870027, 0.0 ], [ 9.215437595597278, 48.792420694523905, 0.0 ], [ 9.215401466660413, 48.792406104559461, 0.0 ], [ 9.215399028044148, 48.792408716904824, 0.0 ], [ 9.215375169184973, 48.79239904977937, 0.0 ], [ 9.215377608186882, 48.792396527357376, 0.0 ], [ 9.215327300388878, 48.792376208775956, 0.0 ], [ 9.215324861770203, 48.792378821119769, 0.0 ], [ 9.215300184808182, 48.792368795814021, 0.0 ], [ 9.215302623427654, 48.792366183470726, 0.0 ], [ 9.215267448798274, 48.792351951374371, 0.0 ], [ 9.215265010177662, 48.792354563716941, 0.0 ], [ 9.215241696918289, 48.792345165314721, 0.0 ], [ 9.215244135539661, 48.792342552972634, 0.0 ], [ 9.215192737137901, 48.792321786752701, 0.0 ], [ 9.215190298514859, 48.792324399093694, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001fe92", "Latitude": 48.78817, "Longitude": 9.19638, "X_coordina": 3514502.11, "Y_coordina": 5405652.1, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 376.3, "SecondaryU": "office and administration", "Secondar00": 119.0, "BuildingTy": "MFH", "Footprint_": 148.7, "Total_wall": 460.4, "Total_wa00": 0.0, "Total_outw": 911.2, "Total_shar": 0.0, "Total_roof": 218.0, "Gross_volu": 1627.2, "Is_Gross_v": "false", "Heated_vol": 1547.7, "Ridge_mean": 14.0, "Eaves_mean": 6.94, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 6, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.524, "Heated_are": 495.3, "Mean_Uvalu": 0.57, "Specific_d": "15,5", "Specific_s": 59.4, "Total_Year": 37107.0, "January_He": 7002.0, "February_H": 5014.0, "March_Heat": 3267.0, "April_Heat": 866.0, "May_Heatin": 57.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 148.0, "October_He": 1689.0, "November_H": 4497.0, "December_H": 6866.0, "PV_potenti": 10.46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196227483814155, 48.788159018949862, 0.0 ], [ 9.196260784221915, 48.788148441132229, 0.0 ], [ 9.196294770314044, 48.788139210990991, 0.0 ], [ 9.196330251601291, 48.788129528672236, 0.0 ], [ 9.196362056760906, 48.788119402992862, 0.0 ], [ 9.196435819584044, 48.788224757637202, 0.0 ], [ 9.196364320270821, 48.78824610156412, 0.0 ], [ 9.196292820896886, 48.788267445446699, 0.0 ], [ 9.196261754325635, 48.788222716418524, 0.0 ], [ 9.196255770676125, 48.788223805700341, 0.0 ], [ 9.19625004938308, 48.788222376672394, 0.0 ], [ 9.196234717099156, 48.788199202498028, 0.0 ], [ 9.196249531011413, 48.788194141528031, 0.0 ], [ 9.196227483814155, 48.788159018949862, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001fe93", "Latitude": 48.78807, "Longitude": 9.1963, "X_coordina": 3514496.51, "Y_coordina": 5405640.74, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 38.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.4, "Total_wall": 55.6, "Total_wa00": 0.0, "Total_outw": 237.8, "Total_shar": 57.4, "Total_roof": 46.4, "Gross_volu": 155.1, "Is_Gross_v": "false", "Heated_vol": 120.0, "Ridge_mean": 3.3, "Eaves_mean": 3.31, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 1.063, "Heated_are": 38.4, "Mean_Uvalu": 0.56, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196322773788348, 48.788096449515372, 0.0 ], [ 9.196286001444282, 48.788124028840272, 0.0 ], [ 9.196259632048758, 48.788132166914082, 0.0 ], [ 9.19618734515846, 48.788091105056061, 0.0 ], [ 9.196241078646125, 48.788050727699961, 0.0 ], [ 9.196322773788348, 48.788096449515372, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001fb55", "Latitude": 48.78853, "Longitude": 9.21156, "X_coordina": 3515617.42, "Y_coordina": 5405695.27, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 133.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 47.1, "Total_wall": 87.6, "Total_wa00": 0.0, "Total_outw": 172.6, "Total_shar": 240.2, "Total_roof": 64.8, "Gross_volu": 464.7, "Is_Gross_v": "false", "Heated_vol": 417.6, "Ridge_mean": 11.7, "Eaves_mean": 8.04, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.456, "Heated_are": 133.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.3, "Total_Year": 8167.0, "January_He": 1485.0, "February_H": 1045.0, "March_Heat": 639.0, "April_Heat": 125.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 328.0, "November_H": 960.0, "December_H": 1448.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211559092910282, 48.78858571822331, 0.0 ], [ 9.211506683712122, 48.788582217544658, 0.0 ], [ 9.211455091052208, 48.788578715342851, 0.0 ], [ 9.211463434151344, 48.788523846595083, 0.0 ], [ 9.211514754578879, 48.788527349293169, 0.0 ], [ 9.211567572363622, 48.788530939141232, 0.0 ], [ 9.211559092910282, 48.78858571822331, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001f97f", "Latitude": 48.789, "Longitude": 9.19947, "X_coordina": 3514729.34, "Y_coordina": 5405744.73, "LOD": "LOD2", "Year_of_co": 1932, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 265.8, "SecondaryU": "retail", "Secondar00": 76.4, "BuildingTy": "MFH", "Footprint_": 95.5, "Total_wall": 393.5, "Total_wa00": 0.0, "Total_outw": 613.5, "Total_shar": 105.0, "Total_roof": 95.5, "Gross_volu": 1148.6, "Is_Gross_v": "false", "Heated_vol": 1069.3, "Ridge_mean": 12.0, "Eaves_mean": 12.03, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 4, "Number_o00": 8, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.534, "Heated_are": 342.2, "Mean_Uvalu": 0.45, "Specific_d": "28,6", "Specific_s": 45.2, "Total_Year": 25262.0, "January_He": 3829.0, "February_H": 2632.0, "March_Heat": 1644.0, "April_Heat": 407.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 771.0, "November_H": 2342.0, "December_H": 3773.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199347989901947, 48.789051996513805, 0.0 ], [ 9.19934174406138, 48.788986902608194, 0.0 ], [ 9.199506527312552, 48.78898122182278, 0.0 ], [ 9.19951295223535, 48.789057106246403, 0.0 ], [ 9.199486963698188, 48.789058320277029, 0.0 ], [ 9.199431312905167, 48.789060934530333, 0.0 ], [ 9.199430315731554, 48.789049695801928, 0.0 ], [ 9.199347989901947, 48.789051996513805, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001f964", "Latitude": 48.78787, "Longitude": 9.2013, "X_coordina": 3514863.76, "Y_coordina": 5405619.61, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 744.5, "SecondaryU": "retail", "Secondar00": 157.4, "BuildingTy": "GMH", "Footprint_": 196.7, "Total_wall": 648.2, "Total_wa00": 0.0, "Total_outw": 974.5, "Total_shar": 244.4, "Total_roof": 286.2, "Gross_volu": 3014.5, "Is_Gross_v": "false", "Heated_vol": 2818.4, "Ridge_mean": 18.5, "Eaves_mean": 12.4, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 14, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.393, "Heated_are": 901.9, "Mean_Uvalu": 0.48, "Specific_d": "25,8", "Specific_s": 41.2, "Total_Year": 60408.0, "January_He": 9022.0, "February_H": 6443.0, "March_Heat": 4093.0, "April_Heat": 937.0, "May_Heatin": 39.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 120.0, "October_He": 1961.0, "November_H": 5663.0, "December_H": 8847.0, "PV_potenti": 13.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201113694952525, 48.787875782391602, 0.0 ], [ 9.201316201182197, 48.787809694353129, 0.0 ], [ 9.201390770272143, 48.787910008698034, 0.0 ], [ 9.201304603111844, 48.787938125616684, 0.0 ], [ 9.201282705495395, 48.787907230154339, 0.0 ], [ 9.201253484595235, 48.787916723210238, 0.0 ], [ 9.201276197640341, 48.787947347481847, 0.0 ], [ 9.201189759975486, 48.787975914405521, 0.0 ], [ 9.201152684886052, 48.787927060702074, 0.0 ], [ 9.201113694952525, 48.787875782391602, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001f624", "Latitude": 48.78866, "Longitude": 9.21268, "X_coordina": 3515700.26, "Y_coordina": 5405709.78, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 90.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.7, "Total_wall": 51.4, "Total_wa00": 0.0, "Total_outw": 113.5, "Total_shar": 223.9, "Total_roof": 51.4, "Gross_volu": 324.8, "Is_Gross_v": "false", "Heated_vol": 283.1, "Ridge_mean": 9.3, "Eaves_mean": 6.25, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.475, "Heated_are": 90.6, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 45.5, "Total_Year": 5557.0, "January_He": 1036.0, "February_H": 713.0, "March_Heat": 409.0, "April_Heat": 68.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 207.0, "November_H": 663.0, "December_H": 1016.0, "PV_potenti": 1.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212642140651235, 48.788661237688061, 0.0 ], [ 9.212699172465129, 48.788663650228813, 0.0 ], [ 9.212695003081031, 48.788707540671069, 0.0 ], [ 9.2126382433953, 48.788705127625782, 0.0 ], [ 9.212579442382449, 48.788702718320714, 0.0 ], [ 9.212583203220911, 48.788658738713139, 0.0 ], [ 9.212642140651235, 48.788661237688061, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001f48b", "Latitude": 48.79066, "Longitude": 9.20897, "X_coordina": 3515426.52, "Y_coordina": 5405930.75, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 1242.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 268.1, "Total_wall": 643.5, "Total_wa00": 0.0, "Total_outw": 1006.5, "Total_shar": 206.1, "Total_roof": 388.7, "Gross_volu": 4149.8, "Is_Gross_v": "false", "Heated_vol": 3881.6, "Ridge_mean": 19.9, "Eaves_mean": 12.14, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.327, "Heated_are": 1242.1, "Mean_Uvalu": 0.49, "Specific_d": "14,6", "Specific_s": 56.2, "Total_Year": 87961.0, "January_He": 15648.0, "February_H": 11682.0, "March_Heat": 8457.0, "April_Heat": 3229.0, "May_Heatin": 396.0, "June_Heati": 13, "July_Heati": 1, "August_Hea": 3, "September_": 698.0, "October_He": 4318.0, "November_H": 10190.0, "December_H": 15179.0, "PV_potenti": 17.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208781944835415, 48.790725663591196, 0.0 ], [ 9.2088208730024, 48.790595653379377, 0.0 ], [ 9.209062440444921, 48.790628127135847, 0.0 ], [ 9.209051720644787, 48.790668522301225, 0.0 ], [ 9.209048766542551, 48.79067814949105, 0.0 ], [ 9.209037218949247, 48.790715848448848, 0.0 ], [ 9.209024058375142, 48.790758406208269, 0.0 ], [ 9.208781944835415, 48.790725663591196, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001f2f9", "Latitude": 48.79117, "Longitude": 9.20402, "X_coordina": 3515062.79, "Y_coordina": 5405986.9, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 140.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 61.3, "Total_wall": 136.8, "Total_wa00": 0.0, "Total_outw": 255.2, "Total_shar": 138.8, "Total_roof": 75.1, "Gross_volu": 501.6, "Is_Gross_v": "false", "Heated_vol": 440.3, "Ridge_mean": 9.8, "Eaves_mean": 6.56, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.584, "Heated_are": 140.9, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 42.7, "Total_Year": 8245.0, "January_He": 1636.0, "February_H": 1006.0, "March_Heat": 491.0, "April_Heat": 70.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 230.0, "November_H": 928.0, "December_H": 1642.0, "PV_potenti": 3.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204004064630203, 48.79116684919088, 0.0 ], [ 9.204050448698478, 48.791194283636571, 0.0 ], [ 9.203989257294035, 48.791240702704926, 0.0 ], [ 9.203943009676308, 48.791213357916767, 0.0 ], [ 9.203900445799485, 48.79118825467777, 0.0 ], [ 9.203897583054772, 48.791187090739605, 0.0 ], [ 9.203899618294932, 48.791185558434641, 0.0 ], [ 9.203925942132221, 48.791166088322818, 0.0 ], [ 9.203960136527224, 48.791140939077955, 0.0 ], [ 9.204004064630203, 48.79116684919088, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001f2fa", "Latitude": 48.79108, "Longitude": 9.20391, "X_coordina": 3515054.91, "Y_coordina": 5405977.18, "LOD": "LOD2", "Year_of_co": 1967, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 28.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 35.4, "Total_wall": 61.4, "Total_wa00": 0.0, "Total_outw": 185.8, "Total_shar": 0.0, "Total_roof": 35.4, "Gross_volu": 95.5, "Is_Gross_v": "false", "Heated_vol": 88.7, "Ridge_mean": 2.7, "Eaves_mean": 2.69, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.435, "Heated_are": 28.4, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203866248850865, 48.791145601507125, 0.0 ], [ 9.203816044785999, 48.791115835734161, 0.0 ], [ 9.203837192490752, 48.791061664289209, 0.0 ], [ 9.203917000627808, 48.791109002663447, 0.0 ], [ 9.203866248850865, 48.791145601507125, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001f0ce", "Latitude": 48.78858, "Longitude": 9.20078, "X_coordina": 3514825.69, "Y_coordina": 5405698.44, "LOD": "LOD2", "Year_of_co": 1973, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 730.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 145.8, "Total_wall": 711.3, "Total_wa00": 0.0, "Total_outw": 976.2, "Total_shar": 164.4, "Total_roof": 180.6, "Gross_volu": 2429.7, "Is_Gross_v": "false", "Heated_vol": 2283.9, "Ridge_mean": 19.4, "Eaves_mean": 12.63, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 12, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.446, "Heated_are": 730.8, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 40.8, "Total_Year": 41361.0, "January_He": 7521.0, "February_H": 5143.0, "March_Heat": 3045.0, "April_Heat": 571.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 1402.0, "November_H": 4574.0, "December_H": 7448.0, "PV_potenti": 8.97 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200726938094762, 48.788559247507401, 0.0 ], [ 9.200723099999012, 48.788552330076307, 0.0 ], [ 9.200737511394273, 48.788548797933352, 0.0 ], [ 9.200741349491729, 48.788555715363948, 0.0 ], [ 9.200809327738455, 48.788539050892375, 0.0 ], [ 9.200833724456787, 48.788582351546609, 0.0 ], [ 9.200851942744695, 48.788577913513564, 0.0 ], [ 9.200855781218982, 48.788584920863293, 0.0 ], [ 9.200837562928875, 48.788589358896971, 0.0 ], [ 9.200854284892776, 48.788619184383805, 0.0 ], [ 9.200787937824098, 48.788635396419281, 0.0 ], [ 9.20072240652806, 48.788651427147308, 0.0 ], [ 9.20066285736231, 48.788666008635801, 0.0 ], [ 9.200646135854567, 48.788636273044268, 0.0 ], [ 9.200627781797056, 48.788640801204927, 0.0 ], [ 9.200623806902959, 48.788633704161676, 0.0 ], [ 9.200642297405496, 48.788629265687561, 0.0 ], [ 9.200617900470297, 48.788585875069899, 0.0 ], [ 9.200726938094762, 48.788559247507401, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001f0a8", "Latitude": 48.78899, "Longitude": 9.20345, "X_coordina": 3515021.53, "Y_coordina": 5405743.95, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1173.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 239.2, "Total_wall": 749.3, "Total_wa00": 0.0, "Total_outw": 1077.6, "Total_shar": 215.9, "Total_roof": 325.5, "Gross_volu": 3905.1, "Is_Gross_v": "false", "Heated_vol": 3665.9, "Ridge_mean": 19.2, "Eaves_mean": 13.0, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 19, "Number_o00": 29, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.35, "Heated_are": 1173.1, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 35.5, "Total_Year": 60268.0, "January_He": 10335.0, "February_H": 7168.0, "March_Heat": 4575.0, "April_Heat": 988.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 98.0, "October_He": 2019.0, "November_H": 6313.0, "December_H": 10159.0, "PV_potenti": 14.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203239962330267, 48.788962553534546, 0.0 ], [ 9.203509380853445, 48.788952455897871, 0.0 ], [ 9.203557200193394, 48.789032493347769, 0.0 ], [ 9.203567478221421, 48.789050100213657, 0.0 ], [ 9.203250025635217, 48.789061811476508, 0.0 ], [ 9.203239962330267, 48.788962553534546, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001ef70", "Latitude": 48.78982, "Longitude": 9.20795, "X_coordina": 3515351.86, "Y_coordina": 5405837.82, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 731.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 202.2, "Total_wall": 475.9, "Total_wa00": 0.0, "Total_outw": 728.3, "Total_shar": 154.1, "Total_roof": 202.2, "Gross_volu": 1934.0, "Is_Gross_v": "false", "Heated_vol": 1934.0, "Ridge_mean": 9.6, "Eaves_mean": 9.57, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 9, "Number_o00": 13, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.455, "Heated_are": 731.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 31.9, "Total_Year": 34912.0, "January_He": 6200.0, "February_H": 4031.0, "March_Heat": 2099.0, "April_Heat": 280.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 23.0, "October_He": 908.0, "November_H": 3661.0, "December_H": 6120.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207987774350576, 48.789757634051377, 0.0 ], [ 9.207959782114742, 48.789932675991615, 0.0 ], [ 9.207817385488573, 48.789922232136291, 0.0 ], [ 9.207842414278343, 48.789754479393181, 0.0 ], [ 9.207928313414106, 48.789760439136074, 0.0 ], [ 9.207929373911139, 48.789753603025162, 0.0 ], [ 9.207987774350576, 48.789757634051377, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001eeb5", "Latitude": 48.78784, "Longitude": 9.20038, "X_coordina": 3514796.78, "Y_coordina": 5405616.26, "LOD": "LOD2", "Year_of_co": 1936, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 486.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 106.9, "Total_wall": 284.5, "Total_wa00": 0.0, "Total_outw": 388.6, "Total_shar": 320.5, "Total_roof": 151.3, "Gross_volu": 1596.3, "Is_Gross_v": "false", "Heated_vol": 1519.9, "Ridge_mean": 18.1, "Eaves_mean": 12.71, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 8, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.351, "Heated_are": 486.4, "Mean_Uvalu": 0.58, "Specific_d": "15,8", "Specific_s": 39.6, "Total_Year": 26985.0, "January_He": 4696.0, "February_H": 3326.0, "March_Heat": 2127.0, "April_Heat": 491.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 59.0, "October_He": 1025.0, "November_H": 2933.0, "December_H": 4606.0, "PV_potenti": 7.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200254011049243, 48.787836994765676, 0.0 ], [ 9.200298454104564, 48.787822529685883, 0.0 ], [ 9.200365322053347, 48.787800651832796, 0.0 ], [ 9.200433176220088, 48.787889738023075, 0.0 ], [ 9.200313842745437, 48.787927803525768, 0.0 ], [ 9.200280184664434, 48.78788245062016, 0.0 ], [ 9.200247895023885, 48.787838983721677, 0.0 ], [ 9.200254011049243, 48.787836994765676, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001eeb7", "Latitude": 48.7879, "Longitude": 9.20043, "X_coordina": 3514800.05, "Y_coordina": 5405622.98, "LOD": "LOD2", "Year_of_co": 1936, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 31.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 37.9, "Total_wall": 37.9, "Total_wa00": 0.0, "Total_outw": 102.1, "Total_shar": 88.9, "Total_roof": 37.9, "Gross_volu": 112.5, "Is_Gross_v": "false", "Heated_vol": 98.1, "Ridge_mean": 3.0, "Eaves_mean": 2.98, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 1.061, "Heated_are": 31.4, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200456707066516, 48.78792081065118, 0.0 ], [ 9.200337375683942, 48.787959415716351, 0.0 ], [ 9.200313842745437, 48.787927803525768, 0.0 ], [ 9.200433176220088, 48.787889738023075, 0.0 ], [ 9.200456707066516, 48.78792081065118, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001eb8b", "Latitude": 48.7882, "Longitude": 9.21129, "X_coordina": 3515598.07, "Y_coordina": 5405657.66, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 157.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 57.3, "Total_wall": 160.3, "Total_wa00": 0.0, "Total_outw": 278.1, "Total_shar": 129.5, "Total_roof": 89.4, "Gross_volu": 548.0, "Is_Gross_v": "false", "Heated_vol": 490.7, "Ridge_mean": 12.3, "Eaves_mean": 6.85, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.597, "Heated_are": 157.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 57.3, "Total_Year": 11489.0, "January_He": 2153.0, "February_H": 1545.0, "March_Heat": 990.0, "April_Heat": 229.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 516.0, "November_H": 1423.0, "December_H": 2101.0, "PV_potenti": 3.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211315084012391, 48.788196706875766, 0.0 ], [ 9.211298579322552, 48.788252489827755, 0.0 ], [ 9.211243435903846, 48.788245936641594, 0.0 ], [ 9.211178081024919, 48.788238233147368, 0.0 ], [ 9.211194582447536, 48.788181640905584, 0.0 ], [ 9.211259394415519, 48.78818970508113, 0.0 ], [ 9.211315084012391, 48.788196706875766, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001e976", "Latitude": 48.7953, "Longitude": 9.21237, "X_coordina": 3515674.85, "Y_coordina": 5406447.46, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1253.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 316.5, "Total_wall": 1094.9, "Total_wa00": 0.0, "Total_outw": 1462.2, "Total_shar": 0.0, "Total_roof": 316.5, "Gross_volu": 3917.0, "Is_Gross_v": "false", "Heated_vol": 3917.0, "Ridge_mean": 13.3, "Eaves_mean": 13.35, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 16, "Number_o00": 30, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.441, "Heated_are": 1253.4, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 39.3, "Total_Year": 69052.0, "January_He": 11776.0, "February_H": 8479.0, "March_Heat": 5586.0, "April_Heat": 1405.0, "May_Heatin": 51.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 166.0, "October_He": 2723.0, "November_H": 7551.0, "December_H": 11461.0, "PV_potenti": 11.96 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212416374886315, 48.795208092420395, 0.0 ], [ 9.212396498053026, 48.795432578255117, 0.0 ], [ 9.212226473454901, 48.795426507137385, 0.0 ], [ 9.212239060598101, 48.795280627947925, 0.0 ], [ 9.212233887788322, 48.795280457633943, 0.0 ], [ 9.21224104213583, 48.795201851267635, 0.0 ], [ 9.212416374886315, 48.795208092420395, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001e4b7", "Latitude": 48.78859, "Longitude": 9.21155, "X_coordina": 3515616.79, "Y_coordina": 5405701.37, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 135.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 47.1, "Total_wall": 89.4, "Total_wa00": 0.0, "Total_outw": 170.5, "Total_shar": 235.9, "Total_roof": 64.8, "Gross_volu": 456.3, "Is_Gross_v": "false", "Heated_vol": 423.1, "Ridge_mean": 11.5, "Eaves_mean": 7.86, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.46, "Heated_are": 135.4, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 41.6, "Total_Year": 7776.0, "January_He": 1396.0, "February_H": 977.0, "March_Heat": 585.0, "April_Heat": 105.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 12.0, "October_He": 294.0, "November_H": 897.0, "December_H": 1362.0, "PV_potenti": 1.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211446748312895, 48.788633674012495, 0.0 ], [ 9.211455091052208, 48.788578715342851, 0.0 ], [ 9.211506683712122, 48.788582217544658, 0.0 ], [ 9.211559092910282, 48.78858571822331, 0.0 ], [ 9.211550613438691, 48.788640497304293, 0.0 ], [ 9.211498476739322, 48.788637086045, 0.0 ], [ 9.211446748312895, 48.788633674012495, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001e20b", "Latitude": 48.79121, "Longitude": 9.19995, "X_coordina": 3514763.56, "Y_coordina": 5405990.79, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 654.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 189.4, "Total_wall": 602.0, "Total_wa00": 0.0, "Total_outw": 878.5, "Total_shar": 0.0, "Total_roof": 189.4, "Gross_volu": 2126.1, "Is_Gross_v": "false", "Heated_vol": 2046.1, "Ridge_mean": 11.2, "Eaves_mean": 11.22, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 8, "Number_o00": 22, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.472, "Heated_are": 654.8, "Mean_Uvalu": 0.37, "Specific_d": "15,8", "Specific_s": 36.6, "Total_Year": 34354.0, "January_He": 5893.0, "February_H": 4183.0, "March_Heat": 2616.0, "April_Heat": 538.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 57.0, "October_He": 1232.0, "November_H": 3694.0, "December_H": 5755.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200034313909761, 48.791213469571673, 0.0 ], [ 9.200032278550664, 48.791215001808531, 0.0 ], [ 9.199888986529949, 48.79132225971756, 0.0 ], [ 9.199888304621059, 48.791321901206786, 0.0 ], [ 9.199769350799894, 48.791252057134137, 0.0 ], [ 9.199914815403771, 48.791143536670383, 0.0 ], [ 9.200034313909761, 48.791213469571673, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001e13c", "Latitude": 48.78998, "Longitude": 9.21343, "X_coordina": 3515754.96, "Y_coordina": 5405856.94, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 571.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 149.9, "Total_wall": 272.1, "Total_wa00": 0.0, "Total_outw": 451.1, "Total_shar": 386.0, "Total_roof": 198.8, "Gross_volu": 1934.6, "Is_Gross_v": "false", "Heated_vol": 1784.7, "Ridge_mean": 15.2, "Eaves_mean": 10.59, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.336, "Heated_are": 571.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 34.3, "Total_Year": 28658.0, "January_He": 4921.0, "February_H": 3414.0, "March_Heat": 2041.0, "April_Heat": 345.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 33.0, "October_He": 969.0, "November_H": 3091.0, "December_H": 4791.0, "PV_potenti": 8.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21342200135463, 48.789928437796512, 0.0 ], [ 9.213491096093327, 48.790047188767069, 0.0 ], [ 9.213423803546858, 48.790064578833267, 0.0 ], [ 9.213357190654106, 48.790081787753671, 0.0 ], [ 9.213287415340879, 48.789962948040426, 0.0 ], [ 9.213354572469294, 48.789945738151701, 0.0 ], [ 9.21342200135463, 48.789928437796512, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001df35", "Latitude": 48.78823, "Longitude": 9.19594, "X_coordina": 3514470.17, "Y_coordina": 5405658.72, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 766.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 183.9, "Total_wall": 306.4, "Total_wa00": 0.0, "Total_outw": 494.8, "Total_shar": 564.8, "Total_roof": 216.2, "Gross_volu": 2580.5, "Is_Gross_v": "false", "Heated_vol": 2396.7, "Ridge_mean": 15.7, "Eaves_mean": 12.33, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 10, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.284, "Heated_are": 766.9, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 31.3, "Total_Year": 36145.0, "January_He": 5846.0, "February_H": 4204.0, "March_Heat": 2703.0, "April_Heat": 556.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 1245.0, "November_H": 3713.0, "December_H": 5670.0, "PV_potenti": 11.08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195840549745276, 48.788289977025364, 0.0 ], [ 9.195786076821269, 48.788210397295259, 0.0 ], [ 9.195781971103202, 48.788204469314493, 0.0 ], [ 9.19584898671444, 48.788184931847596, 0.0 ], [ 9.195917905048383, 48.788164761638889, 0.0 ], [ 9.195933782226666, 48.788188114775707, 0.0 ], [ 9.195949795157214, 48.788211377755601, 0.0 ], [ 9.195978945710486, 48.788253412419145, 0.0 ], [ 9.19599468440582, 48.788276136317329, 0.0 ], [ 9.196012476692081, 48.788302004045626, 0.0 ], [ 9.195943560309273, 48.788322713848984, 0.0 ], [ 9.195876818477736, 48.788342700522975, 0.0 ], [ 9.195840549745276, 48.788289977025364, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001df38", "Latitude": 48.78831, "Longitude": 9.19587, "X_coordina": 3514464.73, "Y_coordina": 5405666.86, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 30.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 36.8, "Total_wall": 45.5, "Total_wa00": 0.0, "Total_outw": 138.1, "Total_shar": 49.8, "Total_roof": 36.8, "Gross_volu": 101.2, "Is_Gross_v": "false", "Heated_vol": 94.7, "Ridge_mean": 2.7, "Eaves_mean": 2.73, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.207, "Heated_are": 30.3, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195876818477736, 48.788342700522975, 0.0 ], [ 9.195804910845002, 48.78836413472056, 0.0 ], [ 9.195770142287611, 48.788312217963025, 0.0 ], [ 9.195840549745276, 48.788289977025364, 0.0 ], [ 9.195876818477736, 48.788342700522975, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001dc6c", "Latitude": 48.79561, "Longitude": 9.21196, "X_coordina": 3515644.61, "Y_coordina": 5406481.89, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 536.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 175.0, "Total_wall": 676.0, "Total_wa00": 0.0, "Total_outw": 1017.4, "Total_shar": 107.6, "Total_roof": 176.7, "Gross_volu": 1850.7, "Is_Gross_v": "false", "Heated_vol": 1675.7, "Ridge_mean": 11.8, "Eaves_mean": 11.85, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 7, "Number_o00": 12, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.588, "Heated_are": 536.2, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 49.7, "Total_Year": 35153.0, "January_He": 6305.0, "February_H": 4521.0, "March_Heat": 3046.0, "April_Heat": 871.0, "May_Heatin": 51.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 124.0, "October_He": 1510.0, "November_H": 4042.0, "December_H": 6189.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211816991345195, 48.795636423183851, 0.0 ], [ 9.211822298783513, 48.795636233574754, 0.0 ], [ 9.211821429896148, 48.795623825724093, 0.0 ], [ 9.211816258566678, 48.795624015082822, 0.0 ], [ 9.211812497184145, 48.795571146957869, 0.0 ], [ 9.211945772538193, 48.795567430705319, 0.0 ], [ 9.212002210058104, 48.795565852077409, 0.0 ], [ 9.212005562559018, 48.795618541101852, 0.0 ], [ 9.211949587291221, 48.795620010972407, 0.0 ], [ 9.211920626562955, 48.795620765672872, 0.0 ], [ 9.211921509085464, 48.795633173497691, 0.0 ], [ 9.211950238437995, 48.795632419222848, 0.0 ], [ 9.212006295384098, 48.795630949201637, 0.0 ], [ 9.212009791200677, 48.795685346508819, 0.0 ], [ 9.21195412761856, 48.795686510067696, 0.0 ], [ 9.211820616629828, 48.795689291558404, 0.0 ], [ 9.211816991345195, 48.795636423183851, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001db43", "Latitude": 48.79258, "Longitude": 9.20263, "X_coordina": 3514960.17, "Y_coordina": 5406143.16, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1020, "PrimaryUsa": "residential", "PrimaryU00": 668.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 185.1, "Total_wall": 556.8, "Total_wa00": 0.0, "Total_outw": 849.1, "Total_shar": 74.3, "Total_roof": 185.1, "Gross_volu": 1834.2, "Is_Gross_v": "false", "Heated_vol": 1775.8, "Ridge_mean": 9.9, "Eaves_mean": 9.92, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.515, "Heated_are": 668.9, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 46.4, "Total_Year": 41653.0, "January_He": 7126.0, "February_H": 5247.0, "March_Heat": 3721.0, "April_Heat": 1204.0, "May_Heatin": 82.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 195.0, "October_He": 1920.0, "November_H": 4639.0, "December_H": 6923.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202426704098375, 48.792553556894653, 0.0 ], [ 9.20248776605639, 48.792508038130364, 0.0 ], [ 9.202496586449639, 48.792501548122274, 0.0 ], [ 9.20273941145193, 48.79264221098736, 0.0 ], [ 9.202668172144131, 48.792695211453299, 0.0 ], [ 9.202631336867464, 48.792673334919137, 0.0 ], [ 9.202543208369766, 48.79262178389309, 0.0 ], [ 9.202426704098375, 48.792553556894653, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001da97", "Latitude": 48.78806, "Longitude": 9.20181, "X_coordina": 3514901.68, "Y_coordina": 5405640.67, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 547.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 182.3, "Total_wall": 466.4, "Total_wa00": 0.0, "Total_outw": 735.4, "Total_shar": 0.0, "Total_roof": 217.8, "Gross_volu": 1893.1, "Is_Gross_v": "false", "Heated_vol": 1710.8, "Ridge_mean": 12.5, "Eaves_mean": 8.15, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.484, "Heated_are": 547.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 44.2, "Total_Year": 32885.0, "January_He": 5972.0, "February_H": 4200.0, "March_Heat": 2552.0, "April_Heat": 507.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 62.0, "October_He": 1247.0, "November_H": 3775.0, "December_H": 5880.0, "PV_potenti": 10.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201890338893964, 48.788111192413361, 0.0 ], [ 9.201810561287115, 48.788137679881295, 0.0 ], [ 9.201731598679238, 48.788163806171561, 0.0 ], [ 9.201647723081473, 48.788050649265031, 0.0 ], [ 9.201723153418804, 48.788026057921506, 0.0 ], [ 9.201806873813073, 48.787998664367493, 0.0 ], [ 9.201890338893964, 48.788111192413361, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001da5b", "Latitude": 48.78886, "Longitude": 9.19526, "X_coordina": 3514420.26, "Y_coordina": 5405727.92, "LOD": "LOD2", "Year_of_co": 2004, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1266.8, "SecondaryU": "retail", "Secondar00": 179.0, "BuildingTy": "HH", "Footprint_": 223.7, "Total_wall": 1104.7, "Total_wa00": 0.0, "Total_outw": 1415.9, "Total_shar": 0.0, "Total_roof": 281.0, "Gross_volu": 4546.0, "Is_Gross_v": "false", "Heated_vol": 4518.0, "Ridge_mean": 23.5, "Eaves_mean": 18.46, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 27, "Number_o00": 39, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.356, "Heated_are": 1445.8, "Mean_Uvalu": 0.48, "Specific_d": "22,9", "Specific_s": 36.6, "Total_Year": 85994.0, "January_He": 13137.0, "February_H": 9198.0, "March_Heat": 5633.0, "April_Heat": 1105.0, "May_Heatin": 35.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 120.0, "October_He": 2627.0, "November_H": 8180.0, "December_H": 12827.0, "PV_potenti": 13.25 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195365862639534, 48.788883470109745, 0.0 ], [ 9.195246856175965, 48.788972336662439, 0.0 ], [ 9.195075267357096, 48.78887254245172, 0.0 ], [ 9.195194811618503, 48.78878196661379, 0.0 ], [ 9.195365862639534, 48.788883470109745, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001da5c", "Latitude": 48.78872, "Longitude": 9.19543, "X_coordina": 3514432.29, "Y_coordina": 5405712.62, "LOD": "LOD2", "Year_of_co": 1973, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 437.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 232.0, "Total_wall": 289.7, "Total_wa00": 0.0, "Total_outw": 553.8, "Total_shar": 83.0, "Total_roof": 233.4, "Gross_volu": 1210.6, "Is_Gross_v": "false", "Heated_vol": 1019.1, "Ridge_mean": 5.9, "Eaves_mean": 4.26, "Storey_num": 2, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.624, "Heated_are": 437.4, "Mean_Uvalu": 0.44, "Specific_d": "73,0", "Specific_s": 44.7, "Total_Year": 51484.0, "January_He": 5002.0, "February_H": 3342.0, "March_Heat": 1893.0, "April_Heat": 375.0, "May_Heatin": 22.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 898.0, "November_H": 3032.0, "December_H": 4922.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195517881767611, 48.788779979755375, 0.0 ], [ 9.195428590353192, 48.788845865511604, 0.0 ], [ 9.195418497043018, 48.78884003760357, 0.0 ], [ 9.19525468146306, 48.788744366953914, 0.0 ], [ 9.195247043378792, 48.788739973646024, 0.0 ], [ 9.195282457945032, 48.788712936500133, 0.0 ], [ 9.195377438513972, 48.788640207005919, 0.0 ], [ 9.195387479409682, 48.788632546459411, 0.0 ], [ 9.195425609511187, 48.788674026481594, 0.0 ], [ 9.195520459775986, 48.788777997057991, 0.0 ], [ 9.195517881767611, 48.788779979755375, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001d7fe", "Latitude": 48.78763, "Longitude": 9.20576, "X_coordina": 3515191.73, "Y_coordina": 5405594.12, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 213.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 71.5, "Total_wall": 174.5, "Total_wa00": 0.0, "Total_outw": 331.4, "Total_shar": 152.5, "Total_roof": 112.7, "Gross_volu": 737.9, "Is_Gross_v": "false", "Heated_vol": 666.4, "Ridge_mean": 13.8, "Eaves_mean": 8.04, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 3, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.519, "Heated_are": 213.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.3, "Total_Year": 13475.0, "January_He": 2510.0, "February_H": 1711.0, "March_Heat": 1052.0, "April_Heat": 234.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 32.0, "October_He": 519.0, "November_H": 1558.0, "December_H": 2470.0, "PV_potenti": 4.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205663550393892, 48.787651749915028, 0.0 ], [ 9.205679015441568, 48.787606490690742, 0.0 ], [ 9.205778556759102, 48.787621599885362, 0.0 ], [ 9.205749910861968, 48.787704920383739, 0.0 ], [ 9.205650371592855, 48.787690350702924, 0.0 ], [ 9.205663550393892, 48.787651749915028, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001d64d", "Latitude": 48.79005, "Longitude": 9.20646, "X_coordina": 3515242.9, "Y_coordina": 5405862.9, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 460.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 133.5, "Total_wall": 451.4, "Total_wa00": 0.0, "Total_outw": 702.2, "Total_shar": 112.0, "Total_roof": 133.5, "Gross_volu": 1474.8, "Is_Gross_v": "false", "Heated_vol": 1440.3, "Ridge_mean": 11.1, "Eaves_mean": 11.06, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 6, "Number_o00": 10, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.494, "Heated_are": 460.9, "Mean_Uvalu": 0.56, "Specific_d": "15,8", "Specific_s": 55.7, "Total_Year": 32969.0, "January_He": 6005.0, "February_H": 4377.0, "March_Heat": 2944.0, "April_Heat": 798.0, "May_Heatin": 41.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 133.0, "October_He": 1556.0, "November_H": 3972.0, "December_H": 5841.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206395236238846, 48.789994570506522, 0.0 ], [ 9.206442477999563, 48.789998802161612, 0.0 ], [ 9.206491898353434, 48.790003299661805, 0.0 ], [ 9.206463645896909, 48.790149386289478, 0.0 ], [ 9.206404522982131, 48.790135194416237, 0.0 ], [ 9.206349486938045, 48.790121984349497, 0.0 ], [ 9.206369060386372, 48.790016558782909, 0.0 ], [ 9.206373144634473, 48.790016911158261, 0.0 ], [ 9.206375458943416, 48.7900170868581, 0.0 ], [ 9.206381349653659, 48.789993336463226, 0.0 ], [ 9.206395236238846, 48.789994570506522, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001d1e5", "Latitude": 48.78774, "Longitude": 9.21177, "X_coordina": 3515633.77, "Y_coordina": 5405606.69, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 665.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 160.7, "Total_wall": 551.1, "Total_wa00": 0.0, "Total_outw": 800.0, "Total_shar": 0.0, "Total_roof": 291.5, "Gross_volu": 2239.5, "Is_Gross_v": "false", "Heated_vol": 2078.8, "Ridge_mean": 17.9, "Eaves_mean": 10.54, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 11, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.471, "Heated_are": 665.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 43.1, "Total_Year": 39234.0, "January_He": 7146.0, "February_H": 4943.0, "March_Heat": 2970.0, "April_Heat": 593.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 70.0, "October_He": 1434.0, "November_H": 4488.0, "December_H": 7034.0, "PV_potenti": 12.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211768394541858, 48.787840855566692, 0.0 ], [ 9.211640935890351, 48.787821666366916, 0.0 ], [ 9.211692439733971, 48.787674816280841, 0.0 ], [ 9.211757125257503, 48.787685308348522, 0.0 ], [ 9.211820040552984, 48.787695533864934, 0.0 ], [ 9.211768394541858, 48.787840855566692, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001d1c9", "Latitude": 48.78878, "Longitude": 9.21228, "X_coordina": 3515670.93, "Y_coordina": 5405722.9, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 92.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 43.0, "Total_wall": 99.4, "Total_wa00": 0.0, "Total_outw": 213.8, "Total_shar": 109.5, "Total_roof": 60.3, "Gross_volu": 332.4, "Is_Gross_v": "false", "Heated_vol": 289.4, "Ridge_mean": 9.6, "Eaves_mean": 6.29, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.666, "Heated_are": 92.6, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 59.3, "Total_Year": 6961.0, "January_He": 1367.0, "February_H": 943.0, "March_Heat": 552.0, "April_Heat": 103.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 282.0, "November_H": 886.0, "December_H": 1341.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212296627756503, 48.78882706489312, 0.0 ], [ 9.212180658173899, 48.78882215297309, 0.0 ], [ 9.212185365547374, 48.788776642933456, 0.0 ], [ 9.212243350852557, 48.788779233790237, 0.0 ], [ 9.212300383160951, 48.788781736451028, 0.0 ], [ 9.212296627756503, 48.78882706489312, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001d174", "Latitude": 48.78864, "Longitude": 9.21026, "X_coordina": 3515522.0, "Y_coordina": 5405706.99, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 92.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.1, "Total_wall": 56.3, "Total_wa00": 0.0, "Total_outw": 145.5, "Total_shar": 199.8, "Total_roof": 62.7, "Gross_volu": 334.0, "Is_Gross_v": "false", "Heated_vol": 287.9, "Ridge_mean": 9.0, "Eaves_mean": 5.5, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.531, "Heated_are": 92.1, "Mean_Uvalu": 0.61, "Specific_d": "15,8", "Specific_s": 59.0, "Total_Year": 6897.0, "January_He": 1362.0, "February_H": 928.0, "March_Heat": 538.0, "April_Heat": 104.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 282.0, "November_H": 869.0, "December_H": 1335.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210164483070344, 48.788692133597095, 0.0 ], [ 9.210163621475992, 48.788681344331451, 0.0 ], [ 9.21015989691692, 48.788636748997789, 0.0 ], [ 9.210211058746321, 48.788634857146754, 0.0 ], [ 9.210260995773837, 48.788632967509244, 0.0 ], [ 9.210266534659743, 48.788688350365049, 0.0 ], [ 9.21021591713345, 48.788690241247103, 0.0 ], [ 9.210164483070344, 48.788692133597095, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001d047", "Latitude": 48.78804, "Longitude": 9.19421, "X_coordina": 3514343.23, "Y_coordina": 5405637.26, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 507.4, "SecondaryU": "retail", "Secondar00": 152.8, "BuildingTy": "MFH", "Footprint_": 191.0, "Total_wall": 443.8, "Total_wa00": 0.0, "Total_outw": 760.3, "Total_shar": 341.9, "Total_roof": 191.0, "Gross_volu": 2253.9, "Is_Gross_v": "false", "Heated_vol": 2063.1, "Ridge_mean": 11.8, "Eaves_mean": 11.8, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 8, "Number_o00": 11, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.385, "Heated_are": 660.2, "Mean_Uvalu": 0.35, "Specific_d": "29,1", "Specific_s": 33.3, "Total_Year": 41180.0, "January_He": 5277.0, "February_H": 3793.0, "March_Heat": 2558.0, "April_Heat": 754.0, "May_Heatin": 43.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 75.0, "October_He": 1102.0, "November_H": 3230.0, "December_H": 5154.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194009879401973, 48.788041739245188, 0.0 ], [ 9.194067812826313, 48.787996050330264, 0.0 ], [ 9.194327780810905, 48.788006402753432, 0.0 ], [ 9.19429589234246, 48.788030286331811, 0.0 ], [ 9.19426481828447, 48.788053628985402, 0.0 ], [ 9.194268227754913, 48.788055511630368, 0.0 ], [ 9.194245835836048, 48.788071735662434, 0.0 ], [ 9.194163460529142, 48.78813140404764, 0.0 ], [ 9.194009879401973, 48.788041739245188, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001d044", "Latitude": 48.78809, "Longitude": 9.19443, "X_coordina": 3514359.24, "Y_coordina": 5405642.3, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 1812.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 421.3, "Total_wall": 886.1, "Total_wa00": 0.0, "Total_outw": 1368.3, "Total_shar": 342.5, "Total_roof": 454.5, "Gross_volu": 5803.5, "Is_Gross_v": "false", "Heated_vol": 5664.7, "Ridge_mean": 15.3, "Eaves_mean": 10.23, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.308, "Heated_are": 1812.7, "Mean_Uvalu": 0.47, "Specific_d": "73,0", "Specific_s": 47.1, "Total_Year": 217725.0, "January_He": 19717.0, "February_H": 14556.0, "March_Heat": 10157.0, "April_Heat": 3315.0, "May_Heatin": 291.0, "June_Heati": 8, "July_Heati": 1, "August_Hea": 2, "September_": 647.0, "October_He": 5016.0, "November_H": 12643.0, "December_H": 19030.0, "PV_potenti": 19.56 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194327780810905, 48.788006402753432, 0.0 ], [ 9.194342891341094, 48.788007636183877, 0.0 ], [ 9.194610347709858, 48.788018874567982, 0.0 ], [ 9.194606292441028, 48.78806114554046, 0.0 ], [ 9.194405868554821, 48.788210847268957, 0.0 ], [ 9.194325123755959, 48.788164133331748, 0.0 ], [ 9.194271657683075, 48.788133199883454, 0.0 ], [ 9.194224702263478, 48.78816718030896, 0.0 ], [ 9.194163460529142, 48.78813140404764, 0.0 ], [ 9.194245835836048, 48.788071735662434, 0.0 ], [ 9.194268227754913, 48.788055511630368, 0.0 ], [ 9.19426481828447, 48.788053628985402, 0.0 ], [ 9.19429589234246, 48.788030286331811, 0.0 ], [ 9.194327780810905, 48.788006402753432, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001d045", "Latitude": 48.78801, "Longitude": 9.19472, "X_coordina": 3514380.53, "Y_coordina": 5405633.28, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2723, "PrimaryUsa": "non-heated", "PrimaryU00": 20.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 22.4, "Total_wall": 48.6, "Total_wa00": 0.0, "Total_outw": 163.7, "Total_shar": 0.0, "Total_roof": 22.4, "Gross_volu": 68.8, "Is_Gross_v": "false", "Heated_vol": 53.7, "Ridge_mean": 3.1, "Eaves_mean": 3.07, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 1.555, "Heated_are": 20.2, "Mean_Uvalu": 0.47, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194672273886304, 48.788055638595665, 0.0 ], [ 9.194628640877564, 48.787998520904246, 0.0 ], [ 9.194682132840319, 48.788000948344255, 0.0 ], [ 9.194724136735246, 48.788023897780263, 0.0 ], [ 9.194672273886304, 48.788055638595665, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001cf24", "Latitude": 48.79533, "Longitude": 9.20928, "X_coordina": 3515448.18, "Y_coordina": 5406450.98, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 202.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 85.2, "Total_wall": 105.0, "Total_wa00": 0.0, "Total_outw": 224.6, "Total_shar": 244.3, "Total_roof": 119.2, "Gross_volu": 688.1, "Is_Gross_v": "false", "Heated_vol": 633.4, "Ridge_mean": 10.6, "Eaves_mean": 5.2, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 3, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.468, "Heated_are": 202.7, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 48.1, "Total_Year": 12952.0, "January_He": 2413.0, "February_H": 1684.0, "March_Heat": 1002.0, "April_Heat": 186.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 25.0, "October_He": 509.0, "November_H": 1552.0, "December_H": 2367.0, "PV_potenti": 6.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20918087874959, 48.795383970350379, 0.0 ], [ 9.209155273454467, 48.79537988037432, 0.0 ], [ 9.209181379116924, 48.795307894121464, 0.0 ], [ 9.20922087623711, 48.795314117019572, 0.0 ], [ 9.209264050867057, 48.795320962686489, 0.0 ], [ 9.209301641390777, 48.795326919250812, 0.0 ], [ 9.209315669739308, 48.795329141842586, 0.0 ], [ 9.209307591240082, 48.795350288559035, 0.0 ], [ 9.209317671749131, 48.795352338478672, 0.0 ], [ 9.209309189789368, 48.795374654934591, 0.0 ], [ 9.209298156527993, 48.795372606745786, 0.0 ], [ 9.20928806745547, 48.795401220769044, 0.0 ], [ 9.209238354758796, 48.795393217984433, 0.0 ], [ 9.20918087874959, 48.795383970350379, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001cec9", "Latitude": 48.78971, "Longitude": 9.2093, "X_coordina": 3515451.2, "Y_coordina": 5405825.44, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 42.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 36.0, "Total_wall": 75.3, "Total_wa00": 0.0, "Total_outw": 216.3, "Total_shar": 0.0, "Total_roof": 64.5, "Gross_volu": 168.5, "Is_Gross_v": "false", "Heated_vol": 132.5, "Ridge_mean": 6.8, "Eaves_mean": 2.54, "Storey_num": 2, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.174, "Heated_are": 42.4, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 80.2, "Total_Year": 4069.0, "January_He": 828.0, "February_H": 581.0, "March_Heat": 357.0, "April_Heat": 86.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 14.0, "October_He": 181.0, "November_H": 525.0, "December_H": 821.0, "PV_potenti": 1.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209214577968279, 48.7897402147252, 0.0 ], [ 9.209198149780107, 48.789716864424683, 0.0 ], [ 9.209274950293292, 48.789694783518044, 0.0 ], [ 9.209292192815598, 48.789717592785934, 0.0 ], [ 9.209309983460219, 48.789741300291254, 0.0 ], [ 9.209231416690063, 48.789764103819188, 0.0 ], [ 9.209214577968279, 48.7897402147252, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001ce28", "Latitude": 48.79094, "Longitude": 9.2112, "X_coordina": 3515590.84, "Y_coordina": 5405963.01, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 510.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 127.8, "Total_wall": 264.3, "Total_wa00": 0.0, "Total_outw": 390.7, "Total_shar": 335.5, "Total_roof": 183.6, "Gross_volu": 1668.8, "Is_Gross_v": "false", "Heated_vol": 1596.1, "Ridge_mean": 15.6, "Eaves_mean": 10.49, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.354, "Heated_are": 510.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 38.0, "Total_Year": 27487.0, "January_He": 4746.0, "February_H": 3401.0, "March_Heat": 2098.0, "April_Heat": 393.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 1022.0, "November_H": 3058.0, "December_H": 4627.0, "PV_potenti": 8.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211187907003474, 48.791033851038854, 0.0 ], [ 9.211128641481224, 48.791018672692864, 0.0 ], [ 9.211064743482416, 48.791002243876136, 0.0 ], [ 9.211132057418196, 48.790892143903861, 0.0 ], [ 9.211193775895273, 48.790908127062522, 0.0 ], [ 9.21125454099254, 48.790923932089754, 0.0 ], [ 9.211187907003474, 48.791033851038854, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001ce26", "Latitude": 48.79089, "Longitude": 9.21336, "X_coordina": 3515749.21, "Y_coordina": 5405957.38, "LOD": "LOD2", "Year_of_co": 1927, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 526.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 137.8, "Total_wall": 365.1, "Total_wa00": 0.0, "Total_outw": 582.2, "Total_shar": 173.6, "Total_roof": 204.8, "Gross_volu": 1782.2, "Is_Gross_v": "false", "Heated_vol": 1644.4, "Ridge_mean": 15.4, "Eaves_mean": 10.61, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.418, "Heated_are": 526.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 38.7, "Total_Year": 28685.0, "January_He": 5038.0, "February_H": 3482.0, "March_Heat": 2201.0, "April_Heat": 493.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 55.0, "October_He": 999.0, "November_H": 3101.0, "December_H": 4966.0, "PV_potenti": 9.16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213218971660561, 48.790865008730556, 0.0 ], [ 9.213406087718061, 48.790861334965669, 0.0 ], [ 9.213410551514626, 48.790951160386477, 0.0 ], [ 9.213223846075538, 48.790955462863558, 0.0 ], [ 9.213221479961197, 48.790910955054564, 0.0 ], [ 9.213218971660561, 48.790865008730556, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001cdeb", "Latitude": 48.79451, "Longitude": 9.20787, "X_coordina": 3515344.91, "Y_coordina": 5406359.19, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 2013.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 288.3, "Total_wall": 1674.6, "Total_wa00": 0.0, "Total_outw": 2079.1, "Total_shar": 0.0, "Total_roof": 288.3, "Gross_volu": 6397.2, "Is_Gross_v": "false", "Heated_vol": 6293.0, "Ridge_mean": 23.8, "Eaves_mean": 23.76, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 37, "Number_o00": 58, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.356, "Heated_are": 2013.8, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 33.5, "Total_Year": 99384.0, "January_He": 16808.0, "February_H": 11747.0, "March_Heat": 7226.0, "April_Heat": 1454.0, "May_Heatin": 40.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 130.0, "October_He": 3238.0, "November_H": 10388.0, "December_H": 16454.0, "PV_potenti": 10.87 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207975637483194, 48.794460660065639, 0.0 ], [ 9.207972542762164, 48.794469298316265, 0.0 ], [ 9.207927470233574, 48.794595812228842, 0.0 ], [ 9.207889336369414, 48.794589946120048, 0.0 ], [ 9.20787682462689, 48.794625308663775, 0.0 ], [ 9.207876016913771, 48.794627468287139, 0.0 ], [ 9.207761751027233, 48.794609779703492, 0.0 ], [ 9.207733423029968, 48.794605424552365, 0.0 ], [ 9.207731942583068, 48.794609473782963, 0.0 ], [ 9.207679099018241, 48.794601116278066, 0.0 ], [ 9.207681386819022, 48.794594817503238, 0.0 ], [ 9.207693359840222, 48.794560804805513, 0.0 ], [ 9.20772768050008, 48.794566138316199, 0.0 ], [ 9.207766967480605, 48.794455731236503, 0.0 ], [ 9.20780646450158, 48.794462134467487, 0.0 ], [ 9.207812787874763, 48.794444318191992, 0.0 ], [ 9.207815747260121, 48.794435860036963, 0.0 ], [ 9.207975637483194, 48.794460660065639, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001cd29", "Latitude": 48.79236, "Longitude": 9.20207, "X_coordina": 3514919.5, "Y_coordina": 5406118.63, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 521.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 145.0, "Total_wall": 576.2, "Total_wa00": 0.0, "Total_outw": 760.4, "Total_shar": 0.0, "Total_roof": 189.3, "Gross_volu": 1730.6, "Is_Gross_v": "false", "Heated_vol": 1629.1, "Ridge_mean": 14.2, "Eaves_mean": 9.57, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 7, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.547, "Heated_are": 521.3, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 41.0, "Total_Year": 29644.0, "January_He": 5386.0, "February_H": 3712.0, "March_Heat": 2172.0, "April_Heat": 385.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 44.0, "October_He": 1035.0, "November_H": 3342.0, "December_H": 5297.0, "PV_potenti": 8.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201898269394277, 48.792394600432104, 0.0 ], [ 9.201987626568574, 48.792328121604875, 0.0 ], [ 9.202028259202486, 48.792351964167146, 0.0 ], [ 9.202077613263906, 48.79231524614454, 0.0 ], [ 9.202159045982427, 48.792363029372694, 0.0 ], [ 9.202059384273042, 48.792437174702648, 0.0 ], [ 9.202018747408358, 48.79241332972218, 0.0 ], [ 9.201979697869767, 48.792442381311844, 0.0 ], [ 9.201898269394277, 48.792394600432104, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001cb2f", "Latitude": 48.79115, "Longitude": 9.20943, "X_coordina": 3515460.5, "Y_coordina": 5405985.28, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 123.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 51.9, "Total_wall": 122.9, "Total_wa00": 0.0, "Total_outw": 247.4, "Total_shar": 116.3, "Total_roof": 72.1, "Gross_volu": 415.3, "Is_Gross_v": "false", "Heated_vol": 386.6, "Ridge_mean": 10.6, "Eaves_mean": 6.44, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.622, "Heated_are": 123.7, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 50.9, "Total_Year": 8251.0, "January_He": 1645.0, "February_H": 1052.0, "March_Heat": 581.0, "April_Heat": 109.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 279.0, "November_H": 976.0, "December_H": 1633.0, "PV_potenti": 2.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209415847757324, 48.791209200885788, 0.0 ], [ 9.209334280463743, 48.791198288580098, 0.0 ], [ 9.209345019226767, 48.79116247946186, 0.0 ], [ 9.209356562949855, 48.791123881247053, 0.0 ], [ 9.209439082795667, 48.791134791804723, 0.0 ], [ 9.209415847757324, 48.791209200885788, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001ca87", "Latitude": 48.78913, "Longitude": 9.1959, "X_coordina": 3514466.75, "Y_coordina": 5405758.86, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 631.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 97.1, "Total_wall": 441.8, "Total_wa00": 0.0, "Total_outw": 569.2, "Total_shar": 507.0, "Total_roof": 151.7, "Gross_volu": 2059.7, "Is_Gross_v": "false", "Heated_vol": 1972.1, "Ridge_mean": 22.9, "Eaves_mean": 17.64, "Storey_num": 8, "Average_St": 2.8, "Number_of_": 10, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.345, "Heated_are": 631.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 36.1, "Total_Year": 32807.0, "January_He": 5583.0, "February_H": 4007.0, "March_Heat": 2489.0, "April_Heat": 476.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 48.0, "October_He": 1173.0, "November_H": 3565.0, "December_H": 5459.0, "PV_potenti": 5.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195849127220637, 48.789200169591957, 0.0 ], [ 9.195818847288015, 48.789182775900393, 0.0 ], [ 9.195797296393417, 48.789170313159396, 0.0 ], [ 9.195783929463486, 48.789162602453324, 0.0 ], [ 9.195789444089376, 48.78914586728019, 0.0 ], [ 9.195761748872965, 48.789128199407905, 0.0 ], [ 9.195760225996242, 48.789121547647319, 0.0 ], [ 9.195794416093774, 48.789094602351099, 0.0 ], [ 9.195802579746346, 48.78909413885215, 0.0 ], [ 9.195823171330765, 48.789104894674473, 0.0 ], [ 9.19583606174332, 48.789095071076389, 0.0 ], [ 9.195871662792229, 48.789115962734897, 0.0 ], [ 9.195892805061474, 48.789128336233595, 0.0 ], [ 9.195921859125001, 48.789145462220652, 0.0 ], [ 9.195948048310994, 48.789160794602431, 0.0 ], [ 9.195873951659388, 48.789214515151507, 0.0 ], [ 9.195849127220637, 48.789200169591957, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c96e", "Latitude": 48.78779, "Longitude": 9.20681, "X_coordina": 3515269.14, "Y_coordina": 5405611.87, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 522.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 161.6, "Total_wall": 326.3, "Total_wa00": 0.0, "Total_outw": 575.8, "Total_shar": 152.5, "Total_roof": 255.6, "Gross_volu": 1793.0, "Is_Gross_v": "false", "Heated_vol": 1631.4, "Ridge_mean": 14.3, "Eaves_mean": 8.28, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 7, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.439, "Heated_are": 522.0, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.5, "Total_Year": 29922.0, "January_He": 5269.0, "February_H": 3705.0, "March_Heat": 2384.0, "April_Heat": 611.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1103.0, "November_H": 3291.0, "December_H": 5195.0, "PV_potenti": 11.62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206880367490166, 48.787832565016863, 0.0 ], [ 9.206866513207828, 48.78787215631646, 0.0 ], [ 9.206641420955377, 48.787838209602533, 0.0 ], [ 9.20667047260333, 48.787754618385165, 0.0 ], [ 9.206895702066513, 48.787788924490961, 0.0 ], [ 9.206880367490166, 48.787832565016863, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c894", "Latitude": 48.79368, "Longitude": 9.19979, "X_coordina": 3514751.54, "Y_coordina": 5406265.3, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 244.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 152.7, "Total_wall": 168.0, "Total_wa00": 0.0, "Total_outw": 362.3, "Total_shar": 221.0, "Total_roof": 152.7, "Gross_volu": 902.9, "Is_Gross_v": "false", "Heated_vol": 763.8, "Ridge_mean": 5.9, "Eaves_mean": 5.91, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.558, "Heated_are": 244.4, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 12.5, "Total_Year": 11081.0, "January_He": 1012.0, "February_H": 542.0, "March_Heat": 165.0, "April_Heat": 9.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 19.0, "November_H": 344.0, "December_H": 959.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199808918639702, 48.793710679262759, 0.0 ], [ 9.199707412720482, 48.793786121368534, 0.0 ], [ 9.199702798791618, 48.793789546465604, 0.0 ], [ 9.19962108313141, 48.793741758883847, 0.0 ], [ 9.199625832807261, 48.793738243631118, 0.0 ], [ 9.199723538595041, 48.793665505894559, 0.0 ], [ 9.199793154149274, 48.793613769005354, 0.0 ], [ 9.199874869764335, 48.79366155646624, 0.0 ], [ 9.199808918639702, 48.793710679262759, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c5f6", "Latitude": 48.78798, "Longitude": 9.1938, "X_coordina": 3514312.51, "Y_coordina": 5405630.13, "LOD": "LOD2", "Year_of_co": 2009, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1022.2, "SecondaryU": "retail", "Secondar00": 158.8, "BuildingTy": "GMH", "Footprint_": 198.5, "Total_wall": 873.7, "Total_wa00": 0.0, "Total_outw": 1148.8, "Total_shar": 106.0, "Total_roof": 251.1, "Gross_volu": 3889.1, "Is_Gross_v": "false", "Heated_vol": 3690.6, "Ridge_mean": 22.2, "Eaves_mean": 17.83, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 19, "Number_o00": 30, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.354, "Heated_are": 1181.0, "Mean_Uvalu": 0.45, "Specific_d": "23,5", "Specific_s": 36.5, "Total_Year": 70846.0, "January_He": 10500.0, "February_H": 7549.0, "March_Heat": 4764.0, "April_Heat": 988.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 108.0, "October_He": 2235.0, "November_H": 6667.0, "December_H": 10219.0, "PV_potenti": 12.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193757742804532, 48.787909346523151, 0.0 ], [ 9.193804253692935, 48.787936605046838, 0.0 ], [ 9.193843944695502, 48.787959828467471, 0.0 ], [ 9.193885545457018, 48.787984217666427, 0.0 ], [ 9.19374510594359, 48.788091103498687, 0.0 ], [ 9.193616075329839, 48.788015424952818, 0.0 ], [ 9.193757742804532, 48.787909346523151, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c5f7", "Latitude": 48.78783, "Longitude": 9.19386, "X_coordina": 3514317.11, "Y_coordina": 5405613.9, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 130.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 71.7, "Total_wall": 120.3, "Total_wa00": 0.0, "Total_outw": 257.5, "Total_shar": 91.5, "Total_roof": 71.7, "Gross_volu": 313.9, "Is_Gross_v": "false", "Heated_vol": 313.9, "Ridge_mean": 4.4, "Eaves_mean": 4.38, "Storey_num": 2, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.84, "Heated_are": 130.7, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193904562339696, 48.787833743363137, 0.0 ], [ 9.193899714224942, 48.787882310303367, 0.0 ], [ 9.193721003907044, 48.787875237343528, 0.0 ], [ 9.193725985857029, 48.787826040720006, 0.0 ], [ 9.193904562339696, 48.787833743363137, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c5f8", "Latitude": 48.78792, "Longitude": 9.19391, "X_coordina": 3514321.16, "Y_coordina": 5405623.7, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 108.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 40.4, "Total_wall": 141.8, "Total_wa00": 0.0, "Total_outw": 229.2, "Total_shar": 105.6, "Total_roof": 49.7, "Gross_volu": 357.8, "Is_Gross_v": "false", "Heated_vol": 340.3, "Ridge_mean": 10.4, "Eaves_mean": 7.72, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.671, "Heated_are": 108.9, "Mean_Uvalu": 0.55, "Specific_d": "15,8", "Specific_s": 49.7, "Total_Year": 7136.0, "January_He": 1476.0, "February_H": 897.0, "March_Heat": 438.0, "April_Heat": 70.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 209.0, "November_H": 826.0, "December_H": 1484.0, "PV_potenti": 0.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19392486481963, 48.787946293596804, 0.0 ], [ 9.193926629791754, 48.787945211540574, 0.0 ], [ 9.193932087130397, 48.787948799296274, 0.0 ], [ 9.193885545457018, 48.787984217666427, 0.0 ], [ 9.193843944695502, 48.787959828467471, 0.0 ], [ 9.193804253692935, 48.787936605046838, 0.0 ], [ 9.193847675081164, 48.787903709824413, 0.0 ], [ 9.193846036843647, 48.787902363727284, 0.0 ], [ 9.193848614180382, 48.787900201220801, 0.0 ], [ 9.193855295250916, 48.787903517149147, 0.0 ], [ 9.193853124442894, 48.787905229353115, 0.0 ], [ 9.19392486481963, 48.787946293596804, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c5a9", "Latitude": 48.79221, "Longitude": 9.20204, "X_coordina": 3514917.36, "Y_coordina": 5406101.99, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 266.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 97.8, "Total_wall": 293.7, "Total_wa00": 0.0, "Total_outw": 515.9, "Total_shar": 36.7, "Total_roof": 97.8, "Gross_volu": 668.4, "Is_Gross_v": "false", "Heated_vol": 668.4, "Ridge_mean": 6.8, "Eaves_mean": 6.83, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.732, "Heated_are": 266.8, "Mean_Uvalu": 0.39, "Specific_d": "non calculated", "Specific_s": 68.4, "Total_Year": 18256.0, "January_He": 3733.0, "February_H": 2863.0, "March_Heat": 2217.0, "April_Heat": 966.0, "May_Heatin": 161.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 2, "September_": 379.0, "October_He": 1542.0, "November_H": 2711.0, "December_H": 3677.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201948535849031, 48.792304229006398, 0.0 ], [ 9.201891239478833, 48.792270698047346, 0.0 ], [ 9.202048919507666, 48.792154240216249, 0.0 ], [ 9.20210662161668, 48.792187140920326, 0.0 ], [ 9.20206984910474, 48.792214632147861, 0.0 ], [ 9.202014213014229, 48.792255644995244, 0.0 ], [ 9.201948535849031, 48.792304229006398, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c5aa", "Latitude": 48.79206, "Longitude": 9.20213, "X_coordina": 3514923.86, "Y_coordina": 5406085.32, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 479.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 250.6, "Total_wall": 343.3, "Total_wa00": 0.0, "Total_outw": 727.1, "Total_shar": 0.0, "Total_roof": 302.3, "Gross_volu": 1566.0, "Is_Gross_v": "false", "Heated_vol": 1497.3, "Ridge_mean": 7.9, "Eaves_mean": 4.72, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.585, "Heated_are": 479.1, "Mean_Uvalu": 0.48, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 15.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202007631576969, 48.791972307291658, 0.0 ], [ 9.202266690990283, 48.792123553670322, 0.0 ], [ 9.202223542593673, 48.792156181790716, 0.0 ], [ 9.20218392149742, 48.792186016070481, 0.0 ], [ 9.201907001430182, 48.792026887547507, 0.0 ], [ 9.201979052852607, 48.791972807038363, 0.0 ], [ 9.202007631576969, 48.791972307291658, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c3ed", "Latitude": 48.79065, "Longitude": 9.19878, "X_coordina": 3514677.73, "Y_coordina": 5405928.58, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1315.9, "SecondaryU": "retail", "Secondar00": 206.5, "BuildingTy": "GMH", "Footprint_": 258.1, "Total_wall": 1056.8, "Total_wa00": 0.0, "Total_outw": 1409.2, "Total_shar": 83.1, "Total_roof": 335.0, "Gross_volu": 5015.6, "Is_Gross_v": "false", "Heated_vol": 4757.5, "Ridge_mean": 22.0, "Eaves_mean": 17.47, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 24, "Number_o00": 40, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.342, "Heated_are": 1522.4, "Mean_Uvalu": 0.48, "Specific_d": "23,6", "Specific_s": 36.2, "Total_Year": 91054.0, "January_He": 13546.0, "February_H": 9652.0, "March_Heat": 6014.0, "April_Heat": 1236.0, "May_Heatin": 39.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 132.0, "October_He": 2788.0, "November_H": 8501.0, "December_H": 13226.0, "PV_potenti": 15.83 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19857135575956, 48.790716655711833, 0.0 ], [ 9.198774902379936, 48.790565682483155, 0.0 ], [ 9.198891534979774, 48.790634362592385, 0.0 ], [ 9.198818665580477, 48.790688442595908, 0.0 ], [ 9.198777006462183, 48.790719358313957, 0.0 ], [ 9.198765607565194, 48.790727740885949, 0.0 ], [ 9.198727612279852, 48.790755952553425, 0.0 ], [ 9.198687988432717, 48.790785336025145, 0.0 ], [ 9.19857135575956, 48.790716655711833, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c3af", "Latitude": 48.792, "Longitude": 9.20253, "X_coordina": 3514952.95, "Y_coordina": 5406079.45, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 30.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 38.5, "Total_wall": 33.8, "Total_wa00": 0.0, "Total_outw": 103.2, "Total_shar": 93.4, "Total_roof": 38.5, "Gross_volu": 101.3, "Is_Gross_v": "false", "Heated_vol": 96.2, "Ridge_mean": 2.6, "Eaves_mean": 2.63, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.112, "Heated_are": 30.8, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202428404431132, 48.792028939666466, 0.0 ], [ 9.202424198056816, 48.792032094386371, 0.0 ], [ 9.202421060570133, 48.792030301429456, 0.0 ], [ 9.202477370418203, 48.791987758498202, 0.0 ], [ 9.20247940573393, 48.79198622621842, 0.0 ], [ 9.202543932731908, 48.792024060502101, 0.0 ], [ 9.202489794678133, 48.792065160869292, 0.0 ], [ 9.202428404431132, 48.792028939666466, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c2b9", "Latitude": 48.79405, "Longitude": 9.2019, "X_coordina": 3514906.62, "Y_coordina": 5406306.21, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1164.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 198.9, "Total_wall": 761.1, "Total_wa00": 0.0, "Total_outw": 982.3, "Total_shar": 443.1, "Total_roof": 198.9, "Gross_volu": 3640.3, "Is_Gross_v": "false", "Heated_vol": 3640.3, "Ridge_mean": 18.3, "Eaves_mean": 18.3, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 19, "Number_o00": 33, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.318, "Heated_are": 1164.9, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 29.7, "Total_Year": 53005.0, "January_He": 8453.0, "February_H": 6146.0, "March_Heat": 3888.0, "April_Heat": 745.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 59.0, "October_He": 1729.0, "November_H": 5324.0, "December_H": 8195.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201899159434502, 48.793973207293668, 0.0 ], [ 9.201995204573278, 48.794029960481019, 0.0 ], [ 9.201959110092085, 48.794057180704279, 0.0 ], [ 9.201974119365953, 48.794066596355009, 0.0 ], [ 9.20187424273006, 48.794140418883075, 0.0 ], [ 9.20185828036688, 48.794130914966573, 0.0 ], [ 9.201821098352768, 48.794158496746654, 0.0 ], [ 9.201725189988696, 48.794101923023021, 0.0 ], [ 9.201897801650249, 48.79397401898629, 0.0 ], [ 9.201899159434502, 48.793973207293668, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c28f", "Latitude": 48.79208, "Longitude": 9.2014, "X_coordina": 3514870.45, "Y_coordina": 5406087.49, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 918.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 189.6, "Total_wall": 452.7, "Total_wa00": 0.0, "Total_outw": 589.6, "Total_shar": 544.7, "Total_roof": 189.6, "Gross_volu": 2869.1, "Is_Gross_v": "false", "Heated_vol": 2869.1, "Ridge_mean": 15.1, "Eaves_mean": 15.14, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 11, "Number_o00": 19, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.29, "Heated_are": 918.1, "Mean_Uvalu": 0.35, "Specific_d": "15,8", "Specific_s": 28.1, "Total_Year": 40349.0, "January_He": 6185.0, "February_H": 4577.0, "March_Heat": 3046.0, "April_Heat": 701.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 54.0, "October_He": 1342.0, "November_H": 3917.0, "December_H": 5969.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201398546986548, 48.79216563077518, 0.0 ], [ 9.201369507959049, 48.792187173296796, 0.0 ], [ 9.2012439961112, 48.792112036731695, 0.0 ], [ 9.20122871715901, 48.792103071071985, 0.0 ], [ 9.201256670650872, 48.792082339795051, 0.0 ], [ 9.201290187591143, 48.792057462301322, 0.0 ], [ 9.20131691902904, 48.792037452534487, 0.0 ], [ 9.201350164433583, 48.792012755344992, 0.0 ], [ 9.201491227019131, 48.792096767023622, 0.0 ], [ 9.201450789665827, 48.792126782327003, 0.0 ], [ 9.201444650848183, 48.792123196121963, 0.0 ], [ 9.201425653617378, 48.792137347356594, 0.0 ], [ 9.201431792075439, 48.792140843639672, 0.0 ], [ 9.201433791402685, 48.79216431020064, 0.0 ], [ 9.201398546986548, 48.79216563077518, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001c08f", "Latitude": 48.79216, "Longitude": 9.21351, "X_coordina": 3515759.55, "Y_coordina": 5406098.35, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3074, "PrimaryUsa": "non-heated", "PrimaryU00": 932.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 233.2, "Total_wall": 763.8, "Total_wa00": 0.0, "Total_outw": 1183.0, "Total_shar": 0.0, "Total_roof": 233.2, "Gross_volu": 3037.1, "Is_Gross_v": "false", "Heated_vol": 2914.9, "Ridge_mean": 13.0, "Eaves_mean": 13.02, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.416, "Heated_are": 932.8, "Mean_Uvalu": 0.43, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213323074456468, 48.792210972329201, 0.0 ], [ 9.213401759326615, 48.792087181603357, 0.0 ], [ 9.21359865486628, 48.792141939743246, 0.0 ], [ 9.213520781644396, 48.79226447016719, 0.0 ], [ 9.213323074456468, 48.792210972329201, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001ba96", "Latitude": 48.78826, "Longitude": 9.21162, "X_coordina": 3515622.32, "Y_coordina": 5405664.45, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 187.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.6, "Total_wall": 293.6, "Total_wa00": 0.0, "Total_outw": 430.8, "Total_shar": 0.0, "Total_roof": 92.8, "Gross_volu": 586.3, "Is_Gross_v": "false", "Heated_vol": 584.9, "Ridge_mean": 13.3, "Eaves_mean": 7.43, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.757, "Heated_are": 187.2, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 59.4, "Total_Year": 14083.0, "January_He": 2792.0, "February_H": 1874.0, "March_Heat": 1115.0, "April_Heat": 262.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 37.0, "October_He": 544.0, "November_H": 1715.0, "December_H": 2766.0, "PV_potenti": 3.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211574928682982, 48.788306116489395, 0.0 ], [ 9.211509713542698, 48.78829931216314, 0.0 ], [ 9.21152335828452, 48.788243084816152, 0.0 ], [ 9.21158830155661, 48.788249979557911, 0.0 ], [ 9.211643986727569, 48.788255902117804, 0.0 ], [ 9.211629796631527, 48.788311860710202, 0.0 ], [ 9.211574928682982, 48.788306116489395, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b9a5", "Latitude": 48.79186, "Longitude": 9.20375, "X_coordina": 3515042.76, "Y_coordina": 5406063.31, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 203.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 76.6, "Total_wall": 217.1, "Total_wa00": 0.0, "Total_outw": 407.7, "Total_shar": 112.1, "Total_roof": 124.3, "Gross_volu": 704.8, "Is_Gross_v": "false", "Heated_vol": 636.9, "Ridge_mean": 11.5, "Eaves_mean": 5.19, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 3, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.628, "Heated_are": 203.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 58.1, "Total_Year": 15060.0, "January_He": 2852.0, "February_H": 2016.0, "March_Heat": 1288.0, "April_Heat": 318.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 48.0, "October_He": 655.0, "November_H": 1843.0, "December_H": 2797.0, "PV_potenti": 2.19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203694336650953, 48.791846140831048, 0.0 ], [ 9.203748122067935, 48.791852700028279, 0.0 ], [ 9.203748386252588, 48.791850721241673, 0.0 ], [ 9.203748787262835, 48.791848922060176, 0.0 ], [ 9.203784189340654, 48.791852995903767, 0.0 ], [ 9.203775480656173, 48.791887002434883, 0.0 ], [ 9.203767708985442, 48.79191714059241, 0.0 ], [ 9.203664226408677, 48.79190536381499, 0.0 ], [ 9.203662079055176, 48.791912831271382, 0.0 ], [ 9.203624636209222, 48.791908940846042, 0.0 ], [ 9.203626781748699, 48.791901023775544, 0.0 ], [ 9.203624195895232, 48.791901028347908, 0.0 ], [ 9.203632375214042, 48.791870709631951, 0.0 ], [ 9.203640823806579, 48.791839671050305, 0.0 ], [ 9.203694336650953, 48.791846140831048, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b99d", "Latitude": 48.79541, "Longitude": 9.2072, "X_coordina": 3515295.32, "Y_coordina": 5406458.85, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 290.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 96.3, "Total_wall": 354.2, "Total_wa00": 0.0, "Total_outw": 611.3, "Total_shar": 0.0, "Total_roof": 114.3, "Gross_volu": 1003.7, "Is_Gross_v": "false", "Heated_vol": 907.4, "Ridge_mean": 11.9, "Eaves_mean": 8.86, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 4, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.601, "Heated_are": 290.4, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 51.9, "Total_Year": 19658.0, "January_He": 3747.0, "February_H": 2586.0, "March_Heat": 1537.0, "April_Heat": 310.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 771.0, "November_H": 2356.0, "December_H": 3697.0, "PV_potenti": 5.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207248786834114, 48.795440428605893, 0.0 ], [ 9.207202341528133, 48.795465600850711, 0.0 ], [ 9.207155625071936, 48.795491043335069, 0.0 ], [ 9.207131591720804, 48.795472022773524, 0.0 ], [ 9.207126430383433, 48.79547463983954, 0.0 ], [ 9.207083007662069, 48.79544054698431, 0.0 ], [ 9.207088032150921, 48.795437750319209, 0.0 ], [ 9.207063452202267, 48.79541819118495, 0.0 ], [ 9.207111661372414, 48.795391666970524, 0.0 ], [ 9.207156203750962, 48.79536712764984, 0.0 ], [ 9.207248786834114, 48.795440428605893, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b92d", "Latitude": 48.78842, "Longitude": 9.20941, "X_coordina": 3515459.49, "Y_coordina": 5405681.85, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 84.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 40.4, "Total_wall": 49.1, "Total_wa00": 0.0, "Total_outw": 115.1, "Total_shar": 207.0, "Total_roof": 53.9, "Gross_volu": 304.5, "Is_Gross_v": "false", "Heated_vol": 264.1, "Ridge_mean": 9.3, "Eaves_mean": 5.74, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.505, "Heated_are": 84.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.8, "Total_Year": 5209.0, "January_He": 984.0, "February_H": 668.0, "March_Heat": 374.0, "April_Heat": 60.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 189.0, "November_H": 623.0, "December_H": 964.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209362358890401, 48.788460602474437, 0.0 ], [ 9.20930888370531, 48.788462498153415, 0.0 ], [ 9.209307885462163, 48.788451529282, 0.0 ], [ 9.209304885499725, 48.78841736374595, 0.0 ], [ 9.209358768901305, 48.788415467326672, 0.0 ], [ 9.209414013179527, 48.788413568407499, 0.0 ], [ 9.20941814757078, 48.788458702563581, 0.0 ], [ 9.209362358890401, 48.788460602474437, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b622", "Latitude": 48.78832, "Longitude": 9.20097, "X_coordina": 3514839.85, "Y_coordina": 5405669.4, "LOD": "LOD2", "Year_of_co": 1913, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 484.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 94.5, "Total_wall": 434.7, "Total_wa00": 0.0, "Total_outw": 626.7, "Total_shar": 179.2, "Total_roof": 137.9, "Gross_volu": 1515.4, "Is_Gross_v": "false", "Heated_vol": 1515.4, "Ridge_mean": 16.8, "Eaves_mean": 16.8, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 8, "Number_o00": 14, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.44, "Heated_are": 484.9, "Mean_Uvalu": 0.55, "Specific_d": "15,8", "Specific_s": 44.4, "Total_Year": 29225.0, "January_He": 5417.0, "February_H": 3741.0, "March_Heat": 2157.0, "April_Heat": 354.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 1087.0, "November_H": 3432.0, "December_H": 5302.0, "PV_potenti": 4.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200854319971599, 48.788321087416172, 0.0 ], [ 9.200945105689549, 48.788290624761991, 0.0 ], [ 9.200965219755236, 48.788283845387689, 0.0 ], [ 9.201020078308584, 48.788355688562042, 0.0 ], [ 9.200890147611503, 48.788398359262899, 0.0 ], [ 9.200864698479869, 48.788364142743966, 0.0 ], [ 9.200855530697082, 48.788351659346837, 0.0 ], [ 9.200837059774955, 48.788326872633668, 0.0 ], [ 9.200854319971599, 48.788321087416172, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b620", "Latitude": 48.78821, "Longitude": 9.20125, "X_coordina": 3514860.5, "Y_coordina": 5405657.62, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 887.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 208.0, "Total_wall": 693.6, "Total_wa00": 0.0, "Total_outw": 1041.8, "Total_shar": 0.0, "Total_roof": 255.6, "Gross_volu": 2980.0, "Is_Gross_v": "false", "Heated_vol": 2772.0, "Ridge_mean": 16.4, "Eaves_mean": 12.75, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 14, "Number_o00": 24, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.408, "Heated_are": 887.0, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 40.1, "Total_Year": 49637.0, "January_He": 8802.0, "February_H": 6223.0, "March_Heat": 3764.0, "April_Heat": 716.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 79.0, "October_He": 1786.0, "November_H": 5530.0, "December_H": 8664.0, "PV_potenti": 10.85 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201135192097857, 48.788317270006551, 0.0 ], [ 9.201065005737101, 48.788223961896321, 0.0 ], [ 9.201284092721634, 48.788151999929326, 0.0 ], [ 9.201353193204055, 48.788245939271597, 0.0 ], [ 9.201135192097857, 48.788317270006551, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00002e62", "Latitude": 48.78826, "Longitude": 9.19291, "X_coordina": 3514247.23, "Y_coordina": 5405661.39, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 776.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 285.2, "Total_wall": 490.2, "Total_wa00": 0.0, "Total_outw": 761.7, "Total_shar": 89.8, "Total_roof": 285.2, "Gross_volu": 1967.3, "Is_Gross_v": "false", "Heated_vol": 1967.3, "Ridge_mean": 6.9, "Eaves_mean": 6.9, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.539, "Heated_are": 776.8, "Mean_Uvalu": 0.43, "Specific_d": "73,0", "Specific_s": 46.1, "Total_Year": 92537.0, "January_He": 8315.0, "February_H": 6126.0, "March_Heat": 4231.0, "April_Heat": 1347.0, "May_Heatin": 122.0, "June_Heati": 3, "July_Heati": 0, "August_Hea": 1, "September_": 254.0, "October_He": 2075.0, "November_H": 5298.0, "December_H": 8051.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193055657455449, 48.788297287363086, 0.0 ], [ 9.1930116905137, 48.788330093275562, 0.0 ], [ 9.192938523875648, 48.788378414966921, 0.0 ], [ 9.192813723139695, 48.788305516072569, 0.0 ], [ 9.192746823630213, 48.788355715545187, 0.0 ], [ 9.192744641399512, 48.788354460266717, 0.0 ], [ 9.192732019993167, 48.788363563680797, 0.0 ], [ 9.192671452976178, 48.788326076949218, 0.0 ], [ 9.192796717681128, 48.788235943637311, 0.0 ], [ 9.192866208160474, 48.788187178573644, 0.0 ], [ 9.193055657455449, 48.788297287363086, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b4e3", "Latitude": 48.7881, "Longitude": 9.19314, "X_coordina": 3514264.32, "Y_coordina": 5405643.48, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 3224.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 549.5, "Total_wall": 1860.8, "Total_wa00": 0.0, "Total_outw": 2400.5, "Total_shar": 173.1, "Total_roof": 549.5, "Gross_volu": 10217.9, "Is_Gross_v": "false", "Heated_vol": 10077.2, "Ridge_mean": 18.6, "Eaves_mean": 18.6, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.292, "Heated_are": 3224.7, "Mean_Uvalu": 0.38, "Specific_d": "73,0", "Specific_s": 40.0, "Total_Year": 364556.0, "January_He": 29865.0, "February_H": 22172.0, "March_Heat": 15582.0, "April_Heat": 5240.0, "May_Heatin": 493.0, "June_Heati": 13, "July_Heati": 1, "August_Hea": 2, "September_": 896.0, "October_He": 7302.0, "November_H": 18789.0, "December_H": 28765.0, "PV_potenti": 26.07 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192914376894889, 48.788149959417588, 0.0 ], [ 9.192829812446103, 48.788100463197935, 0.0 ], [ 9.193001880143434, 48.787972123644764, 0.0 ], [ 9.193133227694409, 48.788048968000425, 0.0 ], [ 9.193129021413595, 48.788052212306717, 0.0 ], [ 9.193136795641413, 48.788056695450813, 0.0 ], [ 9.193141002612325, 48.788053630990383, 0.0 ], [ 9.193361006095275, 48.788182032455012, 0.0 ], [ 9.193226890611859, 48.788270562607359, 0.0 ], [ 9.193085312306859, 48.788187620707859, 0.0 ], [ 9.193007294655363, 48.788141980358297, 0.0 ], [ 9.192960751462891, 48.788177218508928, 0.0 ], [ 9.192914376894889, 48.788149959417588, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b4e4", "Latitude": 48.78815, "Longitude": 9.19303, "X_coordina": 3514256.49, "Y_coordina": 5405649.04, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 74.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.6, "Total_wall": 92.0, "Total_wa00": 0.0, "Total_outw": 187.5, "Total_shar": 171.1, "Total_roof": 41.6, "Gross_volu": 198.8, "Is_Gross_v": "false", "Heated_vol": 198.8, "Ridge_mean": 4.8, "Eaves_mean": 4.82, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.88, "Heated_are": 74.6, "Mean_Uvalu": 0.45, "Specific_d": "73,0", "Specific_s": 73.1, "Total_Year": 10905.0, "January_He": 1219.0, "February_H": 922.0, "March_Heat": 661.0, "April_Heat": 223.0, "May_Heatin": 24.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 351.0, "November_H": 823.0, "December_H": 1179.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192892801022545, 48.788166181819349, 0.0 ], [ 9.192914376894889, 48.788149959417588, 0.0 ], [ 9.192960751462891, 48.788177218508928, 0.0 ], [ 9.193007294655363, 48.788141980358297, 0.0 ], [ 9.193085312306859, 48.788187620707859, 0.0 ], [ 9.192984485185173, 48.788191386673716, 0.0 ], [ 9.192971458013798, 48.788201120259892, 0.0 ], [ 9.192960136880172, 48.788194394956946, 0.0 ], [ 9.192951859324747, 48.78820061355939, 0.0 ], [ 9.192892801022545, 48.788166181819349, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b313", "Latitude": 48.7877, "Longitude": 9.21154, "X_coordina": 3515616.6, "Y_coordina": 5405602.53, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 654.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 147.4, "Total_wall": 454.5, "Total_wa00": 0.0, "Total_outw": 647.9, "Total_shar": 204.2, "Total_roof": 208.4, "Gross_volu": 2190.3, "Is_Gross_v": "false", "Heated_vol": 2045.4, "Ridge_mean": 17.5, "Eaves_mean": 12.58, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 10, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.387, "Heated_are": 654.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 37.0, "Total_Year": 34615.0, "January_He": 6028.0, "February_H": 4158.0, "March_Heat": 2595.0, "April_Heat": 579.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 1189.0, "November_H": 3696.0, "December_H": 5922.0, "PV_potenti": 9.27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211610185551013, 48.787693491728753, 0.0 ], [ 9.211579520822715, 48.787779874790417, 0.0 ], [ 9.211383018302136, 48.787749301906153, 0.0 ], [ 9.211397272725177, 48.787708630243841, 0.0 ], [ 9.211413678816408, 48.787661839820117, 0.0 ], [ 9.211610185551013, 48.787693491728753, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b308", "Latitude": 48.78842, "Longitude": 9.21157, "X_coordina": 3515618.7, "Y_coordina": 5405683.01, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 138.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 48.5, "Total_wall": 60.6, "Total_wa00": 0.0, "Total_outw": 118.2, "Total_shar": 286.6, "Total_roof": 74.0, "Gross_volu": 481.1, "Is_Gross_v": "false", "Heated_vol": 432.6, "Ridge_mean": 12.4, "Eaves_mean": 7.42, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.399, "Heated_are": 138.4, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 41.3, "Total_Year": 7913.0, "January_He": 1390.0, "February_H": 987.0, "March_Heat": 625.0, "April_Heat": 132.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 17.0, "October_He": 319.0, "November_H": 897.0, "December_H": 1349.0, "PV_potenti": 3.46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211480522891961, 48.788412759502101, 0.0 ], [ 9.211532659357884, 48.78841617077007, 0.0 ], [ 9.211584659742728, 48.78841958226446, 0.0 ], [ 9.211575915710483, 48.788476160308036, 0.0 ], [ 9.211522961894392, 48.788472570713651, 0.0 ], [ 9.211471913698546, 48.788469067519287, 0.0 ], [ 9.21147681482441, 48.788437135621912, 0.0 ], [ 9.211480522891961, 48.788412759502101, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b05b", "Latitude": 48.79126, "Longitude": 9.20391, "X_coordina": 3515054.83, "Y_coordina": 5405996.42, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 145.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 54.3, "Total_wall": 79.5, "Total_wa00": 0.0, "Total_outw": 143.3, "Total_shar": 265.8, "Total_roof": 66.6, "Gross_volu": 480.6, "Is_Gross_v": "false", "Heated_vol": 455.1, "Ridge_mean": 10.5, "Eaves_mean": 7.16, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.428, "Heated_are": 145.6, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 46.3, "Total_Year": 9055.0, "January_He": 1617.0, "February_H": 1168.0, "March_Heat": 748.0, "April_Heat": 165.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 23.0, "October_He": 387.0, "November_H": 1057.0, "December_H": 1577.0, "PV_potenti": 2.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203840599922584, 48.791230894493218, 0.0 ], [ 9.203889009731565, 48.791254458702646, 0.0 ], [ 9.203938646999628, 48.791278650183159, 0.0 ], [ 9.203902213564898, 48.791322237725218, 0.0 ], [ 9.203901395895894, 48.791321969402169, 0.0 ], [ 9.203850008298192, 48.791302457031833, 0.0 ], [ 9.203848917709379, 48.791302009344314, 0.0 ], [ 9.203797802708262, 48.791282586391681, 0.0 ], [ 9.203793582279344, 48.791282234166133, 0.0 ], [ 9.203813370694876, 48.791262056256897, 0.0 ], [ 9.203840599922584, 48.791230894493218, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001b05c", "Latitude": 48.79121, "Longitude": 9.20384, "X_coordina": 3515049.74, "Y_coordina": 5405991.05, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 22.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 24.6, "Total_wall": 41.7, "Total_wa00": 0.0, "Total_outw": 119.4, "Total_shar": 28.7, "Total_roof": 24.6, "Gross_volu": 61.3, "Is_Gross_v": "false", "Heated_vol": 61.3, "Ridge_mean": 2.5, "Eaves_mean": 2.5, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.483, "Heated_are": 22.1, "Mean_Uvalu": 0.43, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203752553989736, 48.791233028628049, 0.0 ], [ 9.203766008812122, 48.79119478728721, 0.0 ], [ 9.203840599922584, 48.791230894493218, 0.0 ], [ 9.203813370694876, 48.791262056256897, 0.0 ], [ 9.203752553989736, 48.791233028628049, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001adba", "Latitude": 48.78852, "Longitude": 9.21309, "X_coordina": 3515729.84, "Y_coordina": 5405693.91, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 117.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 42.6, "Total_wall": 135.4, "Total_wa00": 0.0, "Total_outw": 242.3, "Total_shar": 121.7, "Total_roof": 59.1, "Gross_volu": 400.2, "Is_Gross_v": "false", "Heated_vol": 367.6, "Ridge_mean": 11.4, "Eaves_mean": 7.98, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.628, "Heated_are": 117.6, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 48.5, "Total_Year": 7572.0, "January_He": 1474.0, "February_H": 958.0, "March_Heat": 545.0, "April_Heat": 115.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 14.0, "October_He": 256.0, "November_H": 871.0, "December_H": 1470.0, "PV_potenti": 2.83 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212981390737999, 48.788559626513283, 0.0 ], [ 9.212984603436974, 48.788514838592327, 0.0 ], [ 9.213100981033389, 48.78851983887219, 0.0 ], [ 9.213096815818428, 48.788564628558916, 0.0 ], [ 9.21304114498275, 48.788562213697212, 0.0 ], [ 9.212981390737999, 48.788559626513283, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001acb8", "Latitude": 48.78864, "Longitude": 9.21187, "X_coordina": 3515640.55, "Y_coordina": 5405707.16, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 88.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 43.2, "Total_wall": 50.3, "Total_wa00": 0.0, "Total_outw": 111.3, "Total_shar": 230.4, "Total_roof": 58.8, "Gross_volu": 348.7, "Is_Gross_v": "false", "Heated_vol": 305.5, "Ridge_mean": 10.1, "Eaves_mean": 6.03, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.465, "Heated_are": 88.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 46.8, "Total_Year": 5558.0, "January_He": 1050.0, "February_H": 717.0, "March_Heat": 405.0, "April_Heat": 65.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 206.0, "November_H": 669.0, "December_H": 1030.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211764164307672, 48.788679041755316, 0.0 ], [ 9.211771326559264, 48.788634696224797, 0.0 ], [ 9.211831768467576, 48.788638991320582, 0.0 ], [ 9.211889079589351, 48.788643112297841, 0.0 ], [ 9.21188218999646, 48.788687547257624, 0.0 ], [ 9.211825423179805, 48.788683425275778, 0.0 ], [ 9.211764164307672, 48.788679041755316, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001abe5", "Latitude": 48.78822, "Longitude": 9.213, "X_coordina": 3515723.41, "Y_coordina": 5405660.31, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 681.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 161.7, "Total_wall": 516.7, "Total_wa00": 0.0, "Total_outw": 758.4, "Total_shar": 156.6, "Total_roof": 238.4, "Gross_volu": 2202.4, "Is_Gross_v": "false", "Heated_vol": 2129.7, "Ridge_mean": 16.0, "Eaves_mean": 11.13, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 11, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.425, "Heated_are": 681.5, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 34.3, "Total_Year": 34181.0, "January_He": 5844.0, "February_H": 4017.0, "March_Heat": 2496.0, "April_Heat": 562.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 1097.0, "November_H": 3558.0, "December_H": 5742.0, "PV_potenti": 11.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213067476779171, 48.788288617223742, 0.0 ], [ 9.212822968569643, 48.788266678352734, 0.0 ], [ 9.21283096803181, 48.788227456854393, 0.0 ], [ 9.212838964819644, 48.788187605894549, 0.0 ], [ 9.212838962157674, 48.788186976433849, 0.0 ], [ 9.213081699707489, 48.78820864877644, 0.0 ], [ 9.21307877659471, 48.78822537998542, 0.0 ], [ 9.213076254509334, 48.78824040190279, 0.0 ], [ 9.21307452800953, 48.788250476546878, 0.0 ], [ 9.213070943107866, 48.788271615239196, 0.0 ], [ 9.213067476779171, 48.788288617223742, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001ab53", "Latitude": 48.78813, "Longitude": 9.21228, "X_coordina": 3515670.77, "Y_coordina": 5405650.63, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 632.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 157.3, "Total_wall": 374.8, "Total_wa00": 0.0, "Total_outw": 587.4, "Total_shar": 312.0, "Total_roof": 227.2, "Gross_volu": 2132.7, "Is_Gross_v": "false", "Heated_vol": 1975.4, "Ridge_mean": 15.9, "Eaves_mean": 11.22, "Storey_num": 5, "Average_St": 3.0, "Number_of_": 8, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.373, "Heated_are": 632.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 35.4, "Total_Year": 32387.0, "January_He": 5483.0, "February_H": 3840.0, "March_Heat": 2481.0, "April_Heat": 633.0, "May_Heatin": 25.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 1096.0, "November_H": 3366.0, "December_H": 5390.0, "PV_potenti": 10.11 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212366767321717, 48.788130117176692, 0.0 ], [ 9.212353867987661, 48.788169257755087, 0.0 ], [ 9.21234096825426, 48.788208308408862, 0.0 ], [ 9.212104569525948, 48.788172954435304, 0.0 ], [ 9.212117881485584, 48.788134802285093, 0.0 ], [ 9.212131597517544, 48.788095660228493, 0.0 ], [ 9.212366767321717, 48.788130117176692, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001aa81", "Latitude": 48.79182, "Longitude": 9.21097, "X_coordina": 3515573.52, "Y_coordina": 5406060.78, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 97.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 62.1, "Total_wall": 119.8, "Total_wa00": 0.0, "Total_outw": 267.2, "Total_shar": 32.1, "Total_roof": 102.6, "Gross_volu": 365.5, "Is_Gross_v": "false", "Heated_vol": 305.9, "Ridge_mean": 8.5, "Eaves_mean": 3.23, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.844, "Heated_are": 97.9, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 22.4, "Total_Year": 5410.0, "January_He": 685.0, "February_H": 385.0, "March_Heat": 142.0, "April_Heat": 11.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 24.0, "November_H": 283.0, "December_H": 663.0, "PV_potenti": 3.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210878480537124, 48.791826734969582, 0.0 ], [ 9.210890776076411, 48.791805400560293, 0.0 ], [ 9.210895234498219, 48.791797569042316, 0.0 ], [ 9.210945912040133, 48.791809256217185, 0.0 ], [ 9.210996589982541, 48.791821033292614, 0.0 ], [ 9.210979570286913, 48.79185172842255, 0.0 ], [ 9.210959578291542, 48.791887644563523, 0.0 ], [ 9.210858763688599, 48.791863369978174, 0.0 ], [ 9.21086726698362, 48.79184644877148, 0.0 ], [ 9.210878480537124, 48.791826734969582, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001aa82", "Latitude": 48.792, "Longitude": 9.21096, "X_coordina": 3515572.34, "Y_coordina": 5406080.48, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 39.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 43.3, "Total_wall": 54.2, "Total_wa00": 0.0, "Total_outw": 197.7, "Total_shar": 19.0, "Total_roof": 43.3, "Gross_volu": 87.8, "Is_Gross_v": "false", "Heated_vol": 87.8, "Ridge_mean": 2.0, "Eaves_mean": 2.04, "Storey_num": 1, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.602, "Heated_are": 39.5, "Mean_Uvalu": 0.34, "Specific_d": "non calculated", "Specific_s": 88.2, "Total_Year": 3487.0, "January_He": 721.0, "February_H": 542.0, "March_Heat": 420.0, "April_Heat": 194.0, "May_Heatin": 40.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 70.0, "October_He": 277.0, "November_H": 510.0, "December_H": 712.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21084103104009, 48.792016272564453, 0.0 ], [ 9.210849092163292, 48.791991259045169, 0.0 ], [ 9.210987594419713, 48.792012676965463, 0.0 ], [ 9.210974950898406, 48.792048399797501, 0.0 ], [ 9.210837135443059, 48.792028509305929, 0.0 ], [ 9.21084103104009, 48.792016272564453, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001aa83", "Latitude": 48.79192, "Longitude": 9.21152, "X_coordina": 3515613.86, "Y_coordina": 5406071.59, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 58.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 72.2, "Total_wall": 91.2, "Total_wa00": 0.0, "Total_outw": 281.7, "Total_shar": 0.0, "Total_roof": 72.2, "Gross_volu": 182.5, "Is_Gross_v": "false", "Heated_vol": 182.5, "Ridge_mean": 2.5, "Eaves_mean": 2.53, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.291, "Heated_are": 58.4, "Mean_Uvalu": 0.34, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211409087471782, 48.791979081862955, 0.0 ], [ 9.211468957407476, 48.791878707126671, 0.0 ], [ 9.211545119787193, 48.791898530285458, 0.0 ], [ 9.211485249979987, 48.791998905060744, 0.0 ], [ 9.211409087471782, 48.791979081862955, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001aa85", "Latitude": 48.79176, "Longitude": 9.21075, "X_coordina": 3515557.45, "Y_coordina": 5406053.88, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 142.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 114.9, "Total_wall": 160.0, "Total_wa00": 0.0, "Total_outw": 411.7, "Total_shar": 0.0, "Total_roof": 145.3, "Gross_volu": 477.7, "Is_Gross_v": "false", "Heated_vol": 443.7, "Ridge_mean": 5.3, "Eaves_mean": 2.96, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.91, "Heated_are": 142.0, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 21.5, "Total_Year": 7724.0, "January_He": 958.0, "February_H": 536.0, "March_Heat": 201.0, "April_Heat": 16.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 33.0, "November_H": 386.0, "December_H": 930.0, "PV_potenti": 7.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21084404197895, 48.791792896828952, 0.0 ], [ 9.2108355330338, 48.791808469190414, 0.0 ], [ 9.210820675355501, 48.791835473471068, 0.0 ], [ 9.210569598910631, 48.791776403407297, 0.0 ], [ 9.210584324748606, 48.791750388559443, 0.0 ], [ 9.210597834353813, 48.791726444176625, 0.0 ], [ 9.210847688721945, 48.791786235805681, 0.0 ], [ 9.21084404197895, 48.791792896828952, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001aa87", "Latitude": 48.79196, "Longitude": 9.21078, "X_coordina": 3515559.5, "Y_coordina": 5406076.09, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2723, "PrimaryUsa": "non-heated", "PrimaryU00": 18.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 22.8, "Total_wall": 40.6, "Total_wa00": 0.0, "Total_outw": 125.8, "Total_shar": 27.8, "Total_roof": 22.8, "Gross_volu": 62.5, "Is_Gross_v": "false", "Heated_vol": 56.8, "Ridge_mean": 2.8, "Eaves_mean": 2.75, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 1.444, "Heated_are": 18.2, "Mean_Uvalu": 0.46, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210773606508683, 48.79200299737137, 0.0 ], [ 9.210689850285153, 48.791989752019141, 0.0 ], [ 9.210701150714076, 48.791958258084556, 0.0 ], [ 9.21078490726482, 48.791971593351661, 0.0 ], [ 9.210773606508683, 48.79200299737137, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001aa88", "Latitude": 48.79186, "Longitude": 9.2108, "X_coordina": 3515561.16, "Y_coordina": 5406065.28, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 87.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 54.5, "Total_wall": 150.6, "Total_wa00": 0.0, "Total_outw": 308.4, "Total_shar": 0.0, "Total_roof": 54.5, "Gross_volu": 286.3, "Is_Gross_v": "false", "Heated_vol": 273.3, "Ridge_mean": 5.2, "Eaves_mean": 5.24, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.932, "Heated_are": 87.5, "Mean_Uvalu": 0.44, "Specific_d": "32,9", "Specific_s": 25.3, "Total_Year": 5087.0, "January_He": 677.0, "February_H": 392.0, "March_Heat": 159.0, "April_Heat": 15.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 28.0, "November_H": 286.0, "December_H": 656.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210803213509426, 48.791923091023342, 0.0 ], [ 9.21068836543339, 48.791895155108911, 0.0 ], [ 9.210716050410857, 48.79184375807975, 0.0 ], [ 9.210830898761598, 48.791871783889917, 0.0 ], [ 9.210803213509426, 48.791923091023342, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001aa89", "Latitude": 48.79204, "Longitude": 9.21145, "X_coordina": 3515608.68, "Y_coordina": 5406084.67, "LOD": "LOD2", "Year_of_co": 1927, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 30.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 34.9, "Total_wall": 65.0, "Total_wa00": 0.0, "Total_outw": 205.1, "Total_shar": 0.0, "Total_roof": 34.9, "Gross_volu": 106.7, "Is_Gross_v": "false", "Heated_vol": 95.2, "Ridge_mean": 3.1, "Eaves_mean": 3.08, "Storey_num": 1, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 1.336, "Heated_are": 30.5, "Mean_Uvalu": 0.4, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21135462495903, 48.792070813976956, 0.0 ], [ 9.21138354631972, 48.792022292074947, 0.0 ], [ 9.211459436687601, 48.792042115789208, 0.0 ], [ 9.211430380424234, 48.792090907728536, 0.0 ], [ 9.21135462495903, 48.792070813976956, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001aa6e", "Latitude": 48.78813, "Longitude": 9.20851, "X_coordina": 3515393.99, "Y_coordina": 5405649.34, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 384.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 125.1, "Total_wall": 401.6, "Total_wa00": 0.0, "Total_outw": 662.4, "Total_shar": 0.0, "Total_roof": 188.9, "Gross_volu": 1270.1, "Is_Gross_v": "false", "Heated_vol": 1201.8, "Ridge_mean": 13.0, "Eaves_mean": 7.26, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.582, "Heated_are": 384.6, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 51.2, "Total_Year": 25800.0, "January_He": 4891.0, "February_H": 3377.0, "March_Heat": 2040.0, "April_Heat": 429.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 59.0, "October_He": 1014.0, "November_H": 3062.0, "December_H": 4817.0, "PV_potenti": 8.14 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208449916730746, 48.788075046424638, 0.0 ], [ 9.208572797353215, 48.788139029426524, 0.0 ], [ 9.208535501507436, 48.788170030707597, 0.0 ], [ 9.208554865793785, 48.788179617471876, 0.0 ], [ 9.208507399851452, 48.788219449679673, 0.0 ], [ 9.208365154498297, 48.788145789893164, 0.0 ], [ 9.208413164088347, 48.788105776912239, 0.0 ], [ 9.208449916730746, 48.788075046424638, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001a5cc", "Latitude": 48.78762, "Longitude": 9.20887, "X_coordina": 3515420.33, "Y_coordina": 5405593.54, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 629.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 158.7, "Total_wall": 398.4, "Total_wa00": 0.0, "Total_outw": 563.6, "Total_shar": 361.5, "Total_roof": 184.5, "Gross_volu": 2330.2, "Is_Gross_v": "false", "Heated_vol": 2171.5, "Ridge_mean": 16.2, "Eaves_mean": 13.16, "Storey_num": 5, "Average_St": 3.0, "Number_of_": 10, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.332, "Heated_are": 629.0, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 36.3, "Total_Year": 32781.0, "January_He": 5564.0, "February_H": 3919.0, "March_Heat": 2552.0, "April_Heat": 649.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1146.0, "November_H": 3432.0, "December_H": 5464.0, "PV_potenti": 9.25 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208927795386687, 48.78766646654239, 0.0 ], [ 9.208914345419229, 48.787704708501003, 0.0 ], [ 9.208705185806005, 48.787673434622064, 0.0 ], [ 9.208717961087915, 48.787636542765476, 0.0 ], [ 9.208735711111343, 48.787585074256206, 0.0 ], [ 9.208945416586573, 48.787616796708129, 0.0 ], [ 9.208927795386687, 48.78766646654239, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001a3e1", "Latitude": 48.78825, "Longitude": 9.21194, "X_coordina": 3515645.88, "Y_coordina": 5405663.41, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 415.7, "SecondaryU": "retail", "Secondar00": 123.6, "BuildingTy": "MFH", "Footprint_": 154.5, "Total_wall": 312.2, "Total_wa00": 0.0, "Total_outw": 484.4, "Total_shar": 223.0, "Total_roof": 239.0, "Gross_volu": 1749.2, "Is_Gross_v": "false", "Heated_vol": 1685.3, "Ridge_mean": 13.9, "Eaves_mean": 9.14, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 7, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.412, "Heated_are": 539.3, "Mean_Uvalu": 0.44, "Specific_d": "28,9", "Specific_s": 43.2, "Total_Year": 38914.0, "January_He": 5466.0, "February_H": 4027.0, "March_Heat": 2717.0, "April_Heat": 732.0, "May_Heatin": 33.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 100.0, "October_He": 1337.0, "November_H": 3585.0, "December_H": 5309.0, "PV_potenti": 10.27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21194321233156, 48.788344915772534, 0.0 ], [ 9.211942138397211, 48.788348424771584, 0.0 ], [ 9.211818791306886, 48.788336422095576, 0.0 ], [ 9.211853680371384, 48.788186724952268, 0.0 ], [ 9.211856266032804, 48.78818672019559, 0.0 ], [ 9.211976071839681, 48.788198099884603, 0.0 ], [ 9.211962189145996, 48.788262330929165, 0.0 ], [ 9.211956709152517, 48.788285990937148, 0.0 ], [ 9.21194321233156, 48.788344915772534, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001a3e3", "Latitude": 48.7883, "Longitude": 9.21202, "X_coordina": 3515651.55, "Y_coordina": 5405669.01, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": -0.1, "SecondaryU": "retail", "Secondar00": 19.6, "BuildingTy": "RH", "Footprint_": 24.5, "Total_wall": 25.7, "Total_wa00": 0.0, "Total_outw": 79.2, "Total_shar": 79.4, "Total_roof": 24.5, "Gross_volu": 83.3, "Is_Gross_v": "false", "Heated_vol": 60.8, "Ridge_mean": 3.4, "Eaves_mean": 3.42, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 1.009, "Heated_are": 19.5, "Mean_Uvalu": 0.4, "Specific_d": "73,3", "Specific_s": 92.7, "Total_Year": 3231.0, "January_He": 425.0, "February_H": 302.0, "March_Heat": 200.0, "April_Heat": 59.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 109.0, "November_H": 277.0, "December_H": 412.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21194321233156, 48.788344915772534, 0.0 ], [ 9.211956709152517, 48.788285990937148, 0.0 ], [ 9.212006267428002, 48.788291205209241, 0.0 ], [ 9.211993584539536, 48.788349499086472, 0.0 ], [ 9.21194321233156, 48.788344915772534, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001a3cd", "Latitude": 48.79333, "Longitude": 9.20211, "X_coordina": 3514921.67, "Y_coordina": 5406226.26, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 731.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 134.8, "Total_wall": 682.6, "Total_wa00": 0.0, "Total_outw": 870.6, "Total_shar": 51.8, "Total_roof": 235.0, "Gross_volu": 2420.5, "Is_Gross_v": "false", "Heated_vol": 2285.7, "Ridge_mean": 20.8, "Eaves_mean": 15.29, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 12, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.453, "Heated_are": 731.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.3, "Total_Year": 41794.0, "January_He": 7521.0, "February_H": 5246.0, "March_Heat": 3143.0, "April_Heat": 581.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 68.0, "October_He": 1522.0, "November_H": 4724.0, "December_H": 7384.0, "PV_potenti": 10.46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20208347455249, 48.793269052201978, 0.0 ], [ 9.202175287124691, 48.793322755271866, 0.0 ], [ 9.202038231624172, 48.793424339679348, 0.0 ], [ 9.201948734181991, 48.793370992135564, 0.0 ], [ 9.201952805318008, 48.793368017518084, 0.0 ], [ 9.202035847433562, 48.793305105200766, 0.0 ], [ 9.202057557931017, 48.793288701018326, 0.0 ], [ 9.20208347455249, 48.793269052201978, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001a219", "Latitude": 48.78857, "Longitude": 9.21269, "X_coordina": 3515700.85, "Y_coordina": 5405700.02, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 90.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.7, "Total_wall": 52.9, "Total_wa00": 0.0, "Total_outw": 120.4, "Total_shar": 229.0, "Total_roof": 51.5, "Gross_volu": 325.3, "Is_Gross_v": "false", "Heated_vol": 283.6, "Ridge_mean": 9.3, "Eaves_mean": 6.26, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.48, "Heated_are": 90.8, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 46.1, "Total_Year": 5619.0, "January_He": 1048.0, "February_H": 723.0, "March_Heat": 417.0, "April_Heat": 71.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 212.0, "November_H": 671.0, "December_H": 1028.0, "PV_potenti": 1.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212590997815147, 48.788570958840111, 0.0 ], [ 9.212650207320078, 48.788573457308679, 0.0 ], [ 9.212706558592503, 48.788575871102438, 0.0 ], [ 9.21270266139906, 48.788619761042895, 0.0 ], [ 9.212646174369054, 48.78861743742155, 0.0 ], [ 9.212587101281041, 48.788615028622758, 0.0 ], [ 9.212590997815147, 48.788570958840111, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001a0cb", "Latitude": 48.79118, "Longitude": 9.19921, "X_coordina": 3514709.5, "Y_coordina": 5405987.45, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 994.5, "SecondaryU": "retail", "Secondar00": 134.7, "BuildingTy": "GMH", "Footprint_": 168.4, "Total_wall": 887.4, "Total_wa00": 0.0, "Total_outw": 1121.2, "Total_shar": 273.8, "Total_roof": 168.4, "Gross_volu": 3615.1, "Is_Gross_v": "false", "Heated_vol": 3528.7, "Ridge_mean": 21.5, "Eaves_mean": 21.47, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 18, "Number_o00": 23, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.345, "Heated_are": 1129.2, "Mean_Uvalu": 0.41, "Specific_d": "22,7", "Specific_s": 31.7, "Total_Year": 61371.0, "January_He": 8862.0, "February_H": 6248.0, "March_Heat": 3931.0, "April_Heat": 868.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 77.0, "October_He": 1709.0, "November_H": 5398.0, "December_H": 8660.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199191885379307, 48.791284710562117, 0.0 ], [ 9.199038147102064, 48.791194423314714, 0.0 ], [ 9.19913693651268, 48.791121414399186, 0.0 ], [ 9.199293810999343, 48.791213224789701, 0.0 ], [ 9.199292725438731, 48.791214035980893, 0.0 ], [ 9.199195704608258, 48.791286862122334, 0.0 ], [ 9.199191885379307, 48.791284710562117, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001a0c2", "Latitude": 48.79093, "Longitude": 9.19936, "X_coordina": 3514720.93, "Y_coordina": 5405959.28, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 118.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 147.7, "Total_wall": 117.2, "Total_wa00": 0.0, "Total_outw": 359.9, "Total_shar": 154.8, "Total_roof": 147.7, "Gross_volu": 454.4, "Is_Gross_v": "false", "Heated_vol": 369.5, "Ridge_mean": 3.1, "Eaves_mean": 3.07, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.967, "Heated_are": 118.3, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199404076476908, 48.790910980497245, 0.0 ], [ 9.199258691481344, 48.791074083815118, 0.0 ], [ 9.199196255512838, 48.79104784421498, 0.0 ], [ 9.199199641520419, 48.791043701871722, 0.0 ], [ 9.199270512750743, 48.790966155025473, 0.0 ], [ 9.199395305794718, 48.790827007028383, 0.0 ], [ 9.199444687188084, 48.790855966840674, 0.0 ], [ 9.199400257980278, 48.790909008789768, 0.0 ], [ 9.199404076476908, 48.790910980497245, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019e17", "Latitude": 48.79184, "Longitude": 9.20229, "X_coordina": 3514935.61, "Y_coordina": 5406060.81, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 832.5, "SecondaryU": "retail", "Secondar00": 126.4, "BuildingTy": "GMH", "Footprint_": 158.0, "Total_wall": 725.9, "Total_wa00": 0.0, "Total_outw": 974.4, "Total_shar": 242.8, "Total_roof": 250.8, "Gross_volu": 3154.7, "Is_Gross_v": "false", "Heated_vol": 2996.7, "Ridge_mean": 22.3, "Eaves_mean": 17.57, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 15, "Number_o00": 24, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.373, "Heated_are": 958.9, "Mean_Uvalu": 0.46, "Specific_d": "23,4", "Specific_s": 37.1, "Total_Year": 58011.0, "January_He": 8743.0, "February_H": 6222.0, "March_Heat": 3871.0, "April_Heat": 797.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 86.0, "October_He": 1806.0, "November_H": 5505.0, "December_H": 8537.0, "PV_potenti": 10.64 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202280735494341, 48.791791531078204, 0.0 ], [ 9.202301606819121, 48.791803544177192, 0.0 ], [ 9.202357812703866, 48.791836717156741, 0.0 ], [ 9.202275446665151, 48.791897830062858, 0.0 ], [ 9.202297274330997, 48.791910740718578, 0.0 ], [ 9.202277462641778, 48.791925343142921, 0.0 ], [ 9.202253036993286, 48.791943280840584, 0.0 ], [ 9.202135582004168, 48.791875055209758, 0.0 ], [ 9.202133750968747, 48.79185968148829, 0.0 ], [ 9.202249905950371, 48.791773780354866, 0.0 ], [ 9.202280735494341, 48.791791531078204, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019e18", "Latitude": 48.79189, "Longitude": 9.2026, "X_coordina": 3514958.18, "Y_coordina": 5406067.02, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 32.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 34.6, "Total_wall": 45.9, "Total_wa00": 0.0, "Total_outw": 162.4, "Total_shar": 0.0, "Total_roof": 34.6, "Gross_volu": 67.9, "Is_Gross_v": "false", "Heated_vol": 67.9, "Ridge_mean": 2.0, "Eaves_mean": 1.95, "Storey_num": 1, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.697, "Heated_are": 32.1, "Mean_Uvalu": 0.34, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202496818000611, 48.791916504813145, 0.0 ], [ 9.202548646575373, 48.79187648758689, 0.0 ], [ 9.202609758010086, 48.791911090592393, 0.0 ], [ 9.202557793350753, 48.79195110808525, 0.0 ], [ 9.202496818000611, 48.791916504813145, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019a46", "Latitude": 48.79357, "Longitude": 9.19961, "X_coordina": 3514738.0, "Y_coordina": 5406253.22, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 245.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 153.4, "Total_wall": 175.7, "Total_wa00": 0.0, "Total_outw": 379.6, "Total_shar": 205.7, "Total_roof": 153.4, "Gross_volu": 899.2, "Is_Gross_v": "false", "Heated_vol": 767.3, "Ridge_mean": 5.9, "Eaves_mean": 5.86, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.57, "Heated_are": 245.5, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 12.9, "Total_Year": 11236.0, "January_He": 1050.0, "February_H": 562.0, "March_Heat": 171.0, "April_Heat": 9.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 20.0, "November_H": 360.0, "December_H": 996.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199518222186322, 48.793681508505266, 0.0 ], [ 9.199436370061379, 48.793633541180959, 0.0 ], [ 9.199440848604741, 48.793630296176062, 0.0 ], [ 9.199538688413675, 48.793557018821318, 0.0 ], [ 9.199608304008539, 48.793505282042723, 0.0 ], [ 9.19969029219007, 48.793553249010053, 0.0 ], [ 9.199609685512099, 48.793613367782044, 0.0 ], [ 9.199522971863693, 48.793677993256736, 0.0 ], [ 9.199518222186322, 48.793681508505266, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001976f", "Latitude": 48.78931, "Longitude": 9.20269, "X_coordina": 3514965.43, "Y_coordina": 5405779.97, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 915.4, "SecondaryU": "retail", "Secondar00": 162.0, "BuildingTy": "GMH", "Footprint_": 202.5, "Total_wall": 756.7, "Total_wa00": 0.0, "Total_outw": 885.1, "Total_shar": 206.3, "Total_roof": 259.1, "Gross_volu": 3430.1, "Is_Gross_v": "false", "Heated_vol": 3366.7, "Ridge_mean": 18.5, "Eaves_mean": 14.74, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 17, "Number_o00": 35, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.359, "Heated_are": 1077.4, "Mean_Uvalu": 0.4, "Specific_d": "24,4", "Specific_s": 33.7, "Total_Year": 62619.0, "January_He": 8888.0, "February_H": 6285.0, "March_Heat": 4068.0, "April_Heat": 945.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 97.0, "October_He": 1813.0, "November_H": 5485.0, "December_H": 8681.0, "PV_potenti": 10.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202523121320397, 48.789280910065202, 0.0 ], [ 9.202748433857341, 48.789274196083312, 0.0 ], [ 9.202755924986418, 48.789383956798616, 0.0 ], [ 9.202530611959542, 48.789390670795839, 0.0 ], [ 9.202523121320397, 48.789280910065202, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019770", "Latitude": 48.78941, "Longitude": 9.20262, "X_coordina": 3514960.33, "Y_coordina": 5405790.36, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 38.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 42.2, "Total_wall": 54.2, "Total_wa00": 0.0, "Total_outw": 188.4, "Total_shar": 30.1, "Total_roof": 42.2, "Gross_volu": 141.5, "Is_Gross_v": "false", "Heated_vol": 101.4, "Ridge_mean": 3.4, "Eaves_mean": 3.35, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.131, "Heated_are": 38.2, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202583847378131, 48.789464134692423, 0.0 ], [ 9.202581650375334, 48.789459282680959, 0.0 ], [ 9.202540248684256, 48.789451891844195, 0.0 ], [ 9.202530611959542, 48.789390670795839, 0.0 ], [ 9.202608444298518, 48.789387656327435, 0.0 ], [ 9.202614291931656, 48.789454189530673, 0.0 ], [ 9.202595535635522, 48.789460247413622, 0.0 ], [ 9.202583847378131, 48.789464134692423, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019636", "Latitude": 48.78833, "Longitude": 9.2094, "X_coordina": 3515458.95, "Y_coordina": 5405671.78, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 91.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 41.6, "Total_wall": 117.3, "Total_wa00": 0.0, "Total_outw": 243.7, "Total_shar": 107.6, "Total_roof": 55.7, "Gross_volu": 328.8, "Is_Gross_v": "false", "Heated_vol": 287.2, "Ridge_mean": 9.7, "Eaves_mean": 6.1, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.707, "Heated_are": 91.9, "Mean_Uvalu": 0.57, "Specific_d": "15,8", "Specific_s": 50.3, "Total_Year": 6075.0, "January_He": 1266.0, "February_H": 749.0, "March_Heat": 374.0, "April_Heat": 68.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 166.0, "November_H": 691.0, "December_H": 1294.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209298126241778, 48.788330060161719, 0.0 ], [ 9.209297836489894, 48.788325834276513, 0.0 ], [ 9.209351175816558, 48.788324028773218, 0.0 ], [ 9.209406419994796, 48.788322129857846, 0.0 ], [ 9.20940987954414, 48.788368614096868, 0.0 ], [ 9.209355044327069, 48.788370692117745, 0.0 ], [ 9.20930116172117, 48.788372768381159, 0.0 ], [ 9.209300296577753, 48.788361079878364, 0.0 ], [ 9.209298126241778, 48.788330060161719, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019463", "Latitude": 48.7904, "Longitude": 9.20731, "X_coordina": 3515305.21, "Y_coordina": 5405902.14, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 2286.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 473.7, "Total_wall": 1165.3, "Total_wa00": 0.0, "Total_outw": 1659.9, "Total_shar": 114.1, "Total_roof": 641.2, "Gross_volu": 7323.0, "Is_Gross_v": "false", "Heated_vol": 7145.3, "Ridge_mean": 18.7, "Eaves_mean": 12.88, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.316, "Heated_are": 2286.5, "Mean_Uvalu": 0.46, "Specific_d": "14,6", "Specific_s": 55.1, "Total_Year": 159486.0, "January_He": 28190.0, "February_H": 21142.0, "March_Heat": 15353.0, "April_Heat": 5741.0, "May_Heatin": 662.0, "June_Heati": 22, "July_Heati": 2, "August_Hea": 5, "September_": 1289.0, "October_He": 7946.0, "November_H": 18486.0, "December_H": 27240.0, "PV_potenti": 31.55 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207267926247484, 48.790405482789723, 0.0 ], [ 9.207467144074101, 48.790432550764351, 0.0 ], [ 9.207432904655438, 48.790545286741491, 0.0 ], [ 9.207073413732115, 48.79049656564974, 0.0 ], [ 9.207113705761364, 48.790300099999264, 0.0 ], [ 9.207167618656365, 48.790304858900491, 0.0 ], [ 9.207246717694913, 48.79031173062009, 0.0 ], [ 9.207285518709428, 48.790315167806817, 0.0 ], [ 9.207267926247484, 48.790405482789723, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019464", "Latitude": 48.79011, "Longitude": 9.20733, "X_coordina": 3515306.36, "Y_coordina": 5405870.2, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 1086.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 474.9, "Total_wall": 500.5, "Total_wa00": 0.0, "Total_outw": 1171.7, "Total_shar": 113.8, "Total_roof": 484.3, "Gross_volu": 3210.7, "Is_Gross_v": "false", "Heated_vol": 3396.7, "Ridge_mean": 7.4, "Eaves_mean": 6.14, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.484, "Heated_are": 1086.9, "Mean_Uvalu": 0.42, "Specific_d": "14,6", "Specific_s": 47.3, "Total_Year": 67311.0, "January_He": 11837.0, "February_H": 8743.0, "March_Heat": 6102.0, "April_Heat": 2042.0, "May_Heatin": 196.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 1, "September_": 406.0, "October_He": 3069.0, "November_H": 7609.0, "December_H": 11420.0, "PV_potenti": 27.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207167618656365, 48.790304858900491, 0.0 ], [ 9.207224160406685, 48.790029231178266, 0.0 ], [ 9.207240063421322, 48.78995168839193, 0.0 ], [ 9.207321068688369, 48.789958916324942, 0.0 ], [ 9.207401665701619, 48.789966144936265, 0.0 ], [ 9.207385790149871, 48.790043687695274, 0.0 ], [ 9.207329358142974, 48.790319315298625, 0.0 ], [ 9.207285518709428, 48.790315167806817, 0.0 ], [ 9.207246717694913, 48.79031173062009, 0.0 ], [ 9.207167618656365, 48.790304858900491, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019369", "Latitude": 48.79559, "Longitude": 9.20743, "X_coordina": 3515311.98, "Y_coordina": 5406478.97, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 261.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 90.9, "Total_wall": 330.0, "Total_wa00": 0.0, "Total_outw": 606.4, "Total_shar": 0.0, "Total_roof": 108.4, "Gross_volu": 907.2, "Is_Gross_v": "false", "Heated_vol": 816.4, "Ridge_mean": 11.4, "Eaves_mean": 8.47, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 3, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.625, "Heated_are": 261.2, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 53.8, "Total_Year": 18189.0, "January_He": 3530.0, "February_H": 2409.0, "March_Heat": 1398.0, "April_Heat": 273.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 698.0, "November_H": 2201.0, "December_H": 3492.0, "PV_potenti": 5.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207318793786532, 48.795617092281937, 0.0 ], [ 9.207293944038973, 48.795598163147929, 0.0 ], [ 9.207335906398205, 48.795575067179477, 0.0 ], [ 9.207382757465725, 48.795549264685839, 0.0 ], [ 9.207409249408007, 48.79557034900823, 0.0 ], [ 9.207411286200591, 48.795569176333807, 0.0 ], [ 9.207450340466941, 48.795600039686541, 0.0 ], [ 9.207448166824998, 48.795601032761084, 0.0 ], [ 9.20747329292578, 48.795620950522924, 0.0 ], [ 9.207426985527325, 48.795646572226715, 0.0 ], [ 9.207384888154714, 48.795669938241794, 0.0 ], [ 9.207361809238112, 48.795651365627762, 0.0 ], [ 9.207357326579729, 48.795653531864268, 0.0 ], [ 9.207314586308605, 48.795619977409743, 0.0 ], [ 9.207318793786532, 48.795617092281937, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019353", "Latitude": 48.79538, "Longitude": 9.21194, "X_coordina": 3515643.59, "Y_coordina": 5406456.9, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1042.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 345.8, "Total_wall": 1214.4, "Total_wa00": 0.0, "Total_outw": 1779.9, "Total_shar": 311.1, "Total_roof": 351.0, "Gross_volu": 3602.9, "Is_Gross_v": "false", "Heated_vol": 3257.1, "Ridge_mean": 11.8, "Eaves_mean": 11.84, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 13, "Number_o00": 32, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.558, "Heated_are": 1042.3, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 48.7, "Total_Year": 67221.0, "January_He": 11911.0, "February_H": 8601.0, "March_Heat": 5862.0, "April_Heat": 1711.0, "May_Heatin": 99.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 249.0, "October_He": 2933.0, "November_H": 7684.0, "December_H": 11662.0, "PV_potenti": 10.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211891835017408, 48.795471006027562, 0.0 ], [ 9.211863215096106, 48.795471867994806, 0.0 ], [ 9.211805689425514, 48.795473592433694, 0.0 ], [ 9.211801617999214, 48.795411732522695, 0.0 ], [ 9.211858721705564, 48.795410017854429, 0.0 ], [ 9.211887627378548, 48.795409146370154, 0.0 ], [ 9.21188675847919, 48.795396738519536, 0.0 ], [ 9.211858124989309, 48.795397600510505, 0.0 ], [ 9.211800885227936, 48.795399324421048, 0.0 ], [ 9.211796542735856, 48.795337734778236, 0.0 ], [ 9.211853646358483, 48.795336020112615, 0.0 ], [ 9.211882551989085, 48.795335148629697, 0.0 ], [ 9.211881683092315, 48.795322740778865, 0.0 ], [ 9.211852750247473, 48.795323612311641, 0.0 ], [ 9.211795673860237, 48.795325326926722, 0.0 ], [ 9.211792786317014, 48.795286035647003, 0.0 ], [ 9.211849889994738, 48.795284347960191, 0.0 ], [ 9.211983721563213, 48.795280378854343, 0.0 ], [ 9.21198633666277, 48.795319580707293, 0.0 ], [ 9.211981029258466, 48.795319770323907, 0.0 ], [ 9.21198189817966, 48.79533217817395, 0.0 ], [ 9.21198720558527, 48.79533198855728, 0.0 ], [ 9.211991412203089, 48.795393578443139, 0.0 ], [ 9.211986104791004, 48.795393768059995, 0.0 ], [ 9.211986973714787, 48.795406175909847, 0.0 ], [ 9.211992281128174, 48.795405986292927, 0.0 ], [ 9.211996488895304, 48.795467845946305, 0.0 ], [ 9.211991181475415, 48.795468035563431, 0.0 ], [ 9.211992050780658, 48.795480533335926, 0.0 ], [ 9.211997358201861, 48.795480343718772, 0.0 ], [ 9.211999974080689, 48.795519725415708, 0.0 ], [ 9.211866522939987, 48.795523684847943, 0.0 ], [ 9.211809174036217, 48.79552538198628, 0.0 ], [ 9.211806558684824, 48.79548609020766, 0.0 ], [ 9.211863662475315, 48.795484375536844, 0.0 ], [ 9.211892704298041, 48.795483503800838, 0.0 ], [ 9.211891835017408, 48.795471006027562, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00019260", "Latitude": 48.79111, "Longitude": 9.21332, "X_coordina": 3515746.29, "Y_coordina": 5405982.14, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 477.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 133.0, "Total_wall": 325.8, "Total_wa00": 0.0, "Total_outw": 533.6, "Total_shar": 160.7, "Total_roof": 210.3, "Gross_volu": 1625.6, "Is_Gross_v": "false", "Heated_vol": 1492.6, "Ridge_mean": 15.0, "Eaves_mean": 9.69, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.435, "Heated_are": 477.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 39.2, "Total_Year": 26271.0, "January_He": 4737.0, "February_H": 3239.0, "March_Heat": 1876.0, "April_Heat": 328.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 35.0, "October_He": 883.0, "November_H": 2929.0, "December_H": 4669.0, "PV_potenti": 9.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213300436805566, 48.791204948981026, 0.0 ], [ 9.213240758351681, 48.791188873250256, 0.0 ], [ 9.213179445266089, 48.791172440820013, 0.0 ], [ 9.213250816699015, 48.791057386303152, 0.0 ], [ 9.213372489627856, 48.791090162898229, 0.0 ], [ 9.213300436805566, 48.791204948981026, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00018da3", "Latitude": 48.78837, "Longitude": 9.2094, "X_coordina": 3515459.21, "Y_coordina": 5405676.84, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 87.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 40.0, "Total_wall": 52.5, "Total_wa00": 0.0, "Total_outw": 121.3, "Total_shar": 212.2, "Total_roof": 53.5, "Gross_volu": 312.1, "Is_Gross_v": "false", "Heated_vol": 272.2, "Ridge_mean": 9.6, "Eaves_mean": 6.0, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.5, "Heated_are": 87.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.2, "Total_Year": 5320.0, "January_He": 1003.0, "February_H": 680.0, "March_Heat": 380.0, "April_Heat": 60.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 191.0, "November_H": 634.0, "December_H": 983.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20940987954414, 48.788368614096868, 0.0 ], [ 9.209414013179527, 48.788413568407499, 0.0 ], [ 9.209358768901305, 48.788415467326672, 0.0 ], [ 9.209304885499725, 48.78841736374595, 0.0 ], [ 9.209304023720405, 48.788406484550052, 0.0 ], [ 9.20930116172117, 48.788372768381159, 0.0 ], [ 9.209355044327069, 48.788370692117745, 0.0 ], [ 9.20940987954414, 48.788368614096868, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00018d70", "Latitude": 48.78844, "Longitude": 9.20984, "X_coordina": 3515491.62, "Y_coordina": 5405684.0, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 99.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.6, "Total_wall": 115.1, "Total_wa00": 0.0, "Total_outw": 230.1, "Total_shar": 95.4, "Total_roof": 66.1, "Gross_volu": 359.0, "Is_Gross_v": "false", "Heated_vol": 311.4, "Ridge_mean": 9.4, "Eaves_mean": 5.72, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.691, "Heated_are": 99.6, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 50.3, "Total_Year": 6586.0, "January_He": 1344.0, "February_H": 827.0, "March_Heat": 433.0, "April_Heat": 77.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 196.0, "November_H": 765.0, "December_H": 1355.0, "PV_potenti": 2.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209745197539426, 48.788432658967565, 0.0 ], [ 9.209744915619392, 48.788430321466038, 0.0 ], [ 9.20979240325107, 48.788428526416283, 0.0 ], [ 9.209848191129137, 48.788426446451382, 0.0 ], [ 9.20985278029452, 48.788482640372479, 0.0 ], [ 9.209797537082338, 48.788484809270962, 0.0 ], [ 9.209749641507749, 48.78848669498948, 0.0 ], [ 9.209748643168126, 48.788475726122108, 0.0 ], [ 9.209745197539426, 48.788432658967565, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00018b9e", "Latitude": 48.78863, "Longitude": 9.19622, "X_coordina": 3514490.4, "Y_coordina": 5405702.64, "LOD": "LOD2", "Year_of_co": 2002, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 821.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 183.9, "Total_wall": 377.3, "Total_wa00": 0.0, "Total_outw": 581.5, "Total_shar": 504.3, "Total_roof": 215.8, "Gross_volu": 2747.5, "Is_Gross_v": "false", "Heated_vol": 2567.8, "Ridge_mean": 16.7, "Eaves_mean": 13.08, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 13, "Number_o00": 25, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.294, "Heated_are": 821.7, "Mean_Uvalu": 0.43, "Specific_d": "15,8", "Specific_s": 30.9, "Total_Year": 38420.0, "January_He": 6280.0, "February_H": 4447.0, "March_Heat": 2786.0, "April_Heat": 529.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 1272.0, "November_H": 3934.0, "December_H": 6098.0, "PV_potenti": 10.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196289718217939, 48.788693149300045, 0.0 ], [ 9.1962119654468, 48.788716392186537, 0.0 ], [ 9.196211557530377, 48.788716482805221, 0.0 ], [ 9.196149165227451, 48.788735203293243, 0.0 ], [ 9.196109895312105, 48.788680776446668, 0.0 ], [ 9.196106610956635, 48.788676106010236, 0.0 ], [ 9.19610932888, 48.78867511222149, 0.0 ], [ 9.196098105467309, 48.788658675306884, 0.0 ], [ 9.19609565972231, 48.788659668631873, 0.0 ], [ 9.196058563139264, 48.788604158982345, 0.0 ], [ 9.196125576720917, 48.788583991893923, 0.0 ], [ 9.196201561929186, 48.788561201694996, 0.0 ], [ 9.196235920733477, 48.78861257947657, 0.0 ], [ 9.196260013326008, 48.788648687724525, 0.0 ], [ 9.196289718217939, 48.788693149300045, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00018b9f", "Latitude": 48.7887, "Longitude": 9.19614, "X_coordina": 3514484.5, "Y_coordina": 5405710.5, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 31.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 39.0, "Total_wall": 46.7, "Total_wa00": 0.0, "Total_outw": 143.0, "Total_shar": 52.3, "Total_roof": 39.0, "Gross_volu": 108.9, "Is_Gross_v": "false", "Heated_vol": 99.5, "Ridge_mean": 2.8, "Eaves_mean": 2.79, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.186, "Heated_are": 31.8, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196039075307954, 48.788702029089514, 0.0 ], [ 9.196109895312105, 48.788680776446668, 0.0 ], [ 9.196149165227451, 48.788735203293243, 0.0 ], [ 9.196075898362272, 48.788757179515535, 0.0 ], [ 9.196039075307954, 48.788702029089514, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00018a70", "Latitude": 48.79035, "Longitude": 9.20624, "X_coordina": 3515226.21, "Y_coordina": 5405895.77, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 524.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 145.8, "Total_wall": 433.5, "Total_wa00": 0.0, "Total_outw": 673.7, "Total_shar": 174.1, "Total_roof": 226.0, "Gross_volu": 1986.0, "Is_Gross_v": "false", "Heated_vol": 1840.2, "Ridge_mean": 16.4, "Eaves_mean": 10.81, "Storey_num": 5, "Average_St": 3.1, "Number_of_": 8, "Number_o00": 18, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.425, "Heated_are": 524.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.1, "Total_Year": 33035.0, "January_He": 6021.0, "February_H": 4263.0, "March_Heat": 2650.0, "April_Heat": 533.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 73.0, "October_He": 1355.0, "November_H": 3931.0, "December_H": 5884.0, "PV_potenti": 10.28 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206199685031294, 48.790297154128446, 0.0 ], [ 9.206261203577984, 48.790298123042852, 0.0 ], [ 9.206255655068761, 48.790438593680236, 0.0 ], [ 9.206193182590212, 48.79043735670006, 0.0 ], [ 9.206128260430349, 48.790436124070801, 0.0 ], [ 9.206134219415935, 48.790296102322891, 0.0 ], [ 9.206134763788706, 48.790296101348467, 0.0 ], [ 9.206199685031294, 48.790297154128446, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001871c", "Latitude": 48.78781, "Longitude": 9.20061, "X_coordina": 3514813.0, "Y_coordina": 5405612.11, "LOD": "LOD2", "Year_of_co": 1994, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 529.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 113.5, "Total_wall": 379.2, "Total_wa00": 0.0, "Total_outw": 552.3, "Total_shar": 249.9, "Total_roof": 166.5, "Gross_volu": 1658.3, "Is_Gross_v": "false", "Heated_vol": 1655.0, "Ridge_mean": 18.4, "Eaves_mean": 11.49, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.398, "Heated_are": 529.6, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 38.6, "Total_Year": 28837.0, "January_He": 4876.0, "February_H": 3599.0, "March_Heat": 2338.0, "April_Heat": 521.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 55.0, "October_He": 1110.0, "November_H": 3165.0, "December_H": 4769.0, "PV_potenti": 7.33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200513472712974, 48.787856776100377, 0.0 ], [ 9.200506812348886, 48.787858766017933, 0.0 ], [ 9.200481501270596, 48.787824908865502, 0.0 ], [ 9.200487889099874, 48.787822829500207, 0.0 ], [ 9.200468460216733, 48.787796605614943, 0.0 ], [ 9.200477701918782, 48.787793532121775, 0.0 ], [ 9.200513174630968, 48.787781960132506, 0.0 ], [ 9.200581401504204, 48.787759630169383, 0.0 ], [ 9.200617111466613, 48.78780758719958, 0.0 ], [ 9.200653643394833, 48.787856891641027, 0.0 ], [ 9.200541380584877, 48.787893416356901, 0.0 ], [ 9.200513472712974, 48.787856776100377, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00018382", "Latitude": 48.78793, "Longitude": 9.21321, "X_coordina": 3515739.47, "Y_coordina": 5405628.29, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 498.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 126.0, "Total_wall": 383.1, "Total_wa00": 0.0, "Total_outw": 582.3, "Total_shar": 170.9, "Total_roof": 188.6, "Gross_volu": 1610.3, "Is_Gross_v": "false", "Heated_vol": 1558.3, "Ridge_mean": 15.4, "Eaves_mean": 10.13, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.442, "Heated_are": 498.6, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 45.6, "Total_Year": 30656.0, "January_He": 5502.0, "February_H": 3945.0, "March_Heat": 2484.0, "April_Heat": 516.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1260.0, "November_H": 3598.0, "December_H": 5370.0, "PV_potenti": 8.65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21312658564845, 48.78788178313215, 0.0 ], [ 9.213192220150479, 48.787891283477471, 0.0 ], [ 9.213252271695012, 48.787899984810849, 0.0 ], [ 9.213213029620711, 48.788016958232227, 0.0 ], [ 9.21315270538862, 48.788008167459608, 0.0 ], [ 9.213087206447794, 48.787998576917474, 0.0 ], [ 9.21312658564845, 48.78788178313215, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00018377", "Latitude": 48.79519, "Longitude": 9.21162, "X_coordina": 3515620.33, "Y_coordina": 5406435.18, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 191.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 82.4, "Total_wall": 236.4, "Total_wa00": 0.0, "Total_outw": 495.2, "Total_shar": 0.0, "Total_roof": 120.5, "Gross_volu": 681.4, "Is_Gross_v": "false", "Heated_vol": 599.0, "Ridge_mean": 9.8, "Eaves_mean": 6.96, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.703, "Heated_are": 191.7, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 53.9, "Total_Year": 13375.0, "January_He": 2551.0, "February_H": 1751.0, "March_Heat": 1095.0, "April_Heat": 264.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 521.0, "November_H": 1581.0, "December_H": 2527.0, "PV_potenti": 4.46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211481489039882, 48.795184364652712, 0.0 ], [ 9.211669701432173, 48.795178623456763, 0.0 ], [ 9.211676320870254, 48.795231486336689, 0.0 ], [ 9.211486068573491, 48.795237680907256, 0.0 ], [ 9.211481489039882, 48.795184364652712, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001830b", "Latitude": 48.78957, "Longitude": 9.20599, "X_coordina": 3515208.38, "Y_coordina": 5405809.66, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1131, "PrimaryUsa": "residential", "PrimaryU00": 570.4, "SecondaryU": "industry", "Secondar00": 157.2, "BuildingTy": "MFH", "Footprint_": 196.5, "Total_wall": 570.7, "Total_wa00": 0.0, "Total_outw": 792.6, "Total_shar": 37.9, "Total_roof": 271.9, "Gross_volu": 2470.0, "Is_Gross_v": "false", "Heated_vol": 2273.6, "Ridge_mean": 15.1, "Eaves_mean": 10.0, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 9, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.442, "Heated_are": 727.5, "Mean_Uvalu": 0.5, "Specific_d": "19,5", "Specific_s": 31.8, "Total_Year": 37314.0, "January_He": 6241.0, "February_H": 4071.0, "March_Heat": 2096.0, "April_Heat": 280.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 19.0, "October_He": 766.0, "November_H": 3508.0, "December_H": 6128.0, "PV_potenti": 13.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205899612640357, 48.789502586294113, 0.0 ], [ 9.206092642897948, 48.789614915318168, 0.0 ], [ 9.206044068725005, 48.789650791844529, 0.0 ], [ 9.205998479294704, 48.78968441492021, 0.0 ], [ 9.20585960888797, 48.789604181597234, 0.0 ], [ 9.205805315462722, 48.789572715443953, 0.0 ], [ 9.20585226068329, 48.789537831089596, 0.0 ], [ 9.205899612640357, 48.789502586294113, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001830c", "Latitude": 48.78958, "Longitude": 9.20586, "X_coordina": 3515198.23, "Y_coordina": 5405810.97, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 48.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 26.3, "Total_wall": 38.3, "Total_wa00": 0.0, "Total_outw": 74.2, "Total_shar": 75.9, "Total_roof": 26.3, "Gross_volu": 98.8, "Is_Gross_v": "false", "Heated_vol": 98.8, "Ridge_mean": 3.8, "Eaves_mean": 3.78, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.919, "Heated_are": 48.4, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 9.5, "Total_Year": 2050.0, "January_He": 160.0, "February_H": 80.0, "March_Heat": 19.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 2.0, "November_H": 49.0, "December_H": 151.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205762043172536, 48.789607233521828, 0.0 ], [ 9.205805315462722, 48.789572715443953, 0.0 ], [ 9.20585960888797, 48.789604181597234, 0.0 ], [ 9.205815382497113, 48.789638341705967, 0.0 ], [ 9.205762043172536, 48.789607233521828, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001830d", "Latitude": 48.78962, "Longitude": 9.2058, "X_coordina": 3515194.49, "Y_coordina": 5405815.17, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2723, "PrimaryUsa": "non-heated", "PrimaryU00": 59.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 32.6, "Total_wall": 84.1, "Total_wa00": 0.0, "Total_outw": 150.1, "Total_shar": 38.3, "Total_roof": 32.6, "Gross_volu": 149.5, "Is_Gross_v": "false", "Heated_vol": 149.5, "Ridge_mean": 4.6, "Eaves_mean": 4.56, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.998, "Heated_are": 59.6, "Mean_Uvalu": 0.46, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205704788692069, 48.78965040922894, 0.0 ], [ 9.205762043172536, 48.789607233521828, 0.0 ], [ 9.205815382497113, 48.789638341705967, 0.0 ], [ 9.20578024182001, 48.789664572282611, 0.0 ], [ 9.205777513739433, 48.789663048455658, 0.0 ], [ 9.205755125925016, 48.789679544483292, 0.0 ], [ 9.205704788692069, 48.78965040922894, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017f3a", "Latitude": 48.78787, "Longitude": 9.19409, "X_coordina": 3514334.24, "Y_coordina": 5405617.92, "LOD": "LOD2", "Year_of_co": 2010, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1057.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 182.1, "Total_wall": 713.3, "Total_wa00": 0.0, "Total_outw": 963.6, "Total_shar": 284.4, "Total_roof": 217.1, "Gross_volu": 3486.5, "Is_Gross_v": "false", "Heated_vol": 3304.4, "Ridge_mean": 20.9, "Eaves_mean": 17.3, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 17, "Number_o00": 22, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.331, "Heated_are": 1057.4, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 31.1, "Total_Year": 49644.0, "January_He": 8099.0, "February_H": 5734.0, "March_Heat": 3679.0, "April_Heat": 835.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1554.0, "November_H": 4971.0, "December_H": 7935.0, "PV_potenti": 10.89 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193937364764722, 48.787835126901754, 0.0 ], [ 9.194163579969777, 48.787844907070173, 0.0 ], [ 9.194158732797614, 48.787893653866945, 0.0 ], [ 9.194153622462249, 48.787944739121954, 0.0 ], [ 9.193971779462995, 48.787937042367211, 0.0 ], [ 9.193928414074454, 48.787913825178578, 0.0 ], [ 9.193931835554544, 48.787883515143072, 0.0 ], [ 9.193937364764722, 48.787835126901754, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017d3f", "Latitude": 48.79175, "Longitude": 9.21331, "X_coordina": 3515745.53, "Y_coordina": 5406053.31, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 723.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 190.9, "Total_wall": 452.3, "Total_wa00": 0.0, "Total_outw": 752.4, "Total_shar": 194.4, "Total_roof": 259.3, "Gross_volu": 2452.1, "Is_Gross_v": "false", "Heated_vol": 2261.1, "Ridge_mean": 15.3, "Eaves_mean": 10.52, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 9, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.387, "Heated_are": 723.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 39.8, "Total_Year": 40290.0, "January_He": 6973.0, "February_H": 5044.0, "March_Heat": 3186.0, "April_Heat": 638.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 74.0, "October_He": 1565.0, "November_H": 4543.0, "December_H": 6789.0, "PV_potenti": 11.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213382485707189, 48.791714394067824, 0.0 ], [ 9.213287850129479, 48.791863752634214, 0.0 ], [ 9.213154320066673, 48.791827490880522, 0.0 ], [ 9.213248141297074, 48.791678583548844, 0.0 ], [ 9.213317084834689, 48.791696980126702, 0.0 ], [ 9.213382485707189, 48.791714394067824, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017c42", "Latitude": 48.78781, "Longitude": 9.21325, "X_coordina": 3515742.38, "Y_coordina": 5405615.35, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 493.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 124.6, "Total_wall": 256.5, "Total_wa00": 0.0, "Total_outw": 407.1, "Total_shar": 341.4, "Total_roof": 186.9, "Gross_volu": 1591.8, "Is_Gross_v": "false", "Heated_vol": 1541.1, "Ridge_mean": 15.4, "Eaves_mean": 10.13, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.364, "Heated_are": 493.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 38.8, "Total_Year": 26947.0, "January_He": 4682.0, "February_H": 3340.0, "March_Heat": 2065.0, "April_Heat": 389.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 1019.0, "November_H": 3022.0, "December_H": 4567.0, "PV_potenti": 8.65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21312658564845, 48.78788178313215, 0.0 ], [ 9.213165696303349, 48.787765889064751, 0.0 ], [ 9.21323119495624, 48.787775479563138, 0.0 ], [ 9.213291110664054, 48.787784271051635, 0.0 ], [ 9.213252271695012, 48.787899984810849, 0.0 ], [ 9.213192220150479, 48.787891283477471, 0.0 ], [ 9.21312658564845, 48.78788178313215, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017c1a", "Latitude": 48.79116, "Longitude": 9.20448, "X_coordina": 3515096.76, "Y_coordina": 5405985.46, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3041, "PrimaryUsa": "event location", "PrimaryU00": 783.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 310.3, "Total_wall": 404.0, "Total_wa00": 0.0, "Total_outw": 596.4, "Total_shar": 103.2, "Total_roof": 384.4, "Gross_volu": 2757.3, "Is_Gross_v": "false", "Heated_vol": 2447.0, "Ridge_mean": 11.5, "Eaves_mean": -0.36, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.418, "Heated_are": 783.0, "Mean_Uvalu": 1.2, "Specific_d": "non calculated", "Specific_s": 115.2, "Total_Year": 90172.0, "January_He": 18747.0, "February_H": 14455.0, "March_Heat": 11186.0, "April_Heat": 4944.0, "May_Heatin": 867.0, "June_Heati": 30, "July_Heati": 1, "August_Hea": 4, "September_": 1613.0, "October_He": 6845.0, "November_H": 13206.0, "December_H": 18275.0, "PV_potenti": 14.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204504427308398, 48.791271585980766, 0.0 ], [ 9.204469374096501, 48.791266198853918, 0.0 ], [ 9.204348791000944, 48.791265873349793, 0.0 ], [ 9.204327594738642, 48.791274453703402, 0.0 ], [ 9.204324728820307, 48.791265808137233, 0.0 ], [ 9.204309131902056, 48.791218823746654, 0.0 ], [ 9.204286246879496, 48.791146655686916, 0.0 ], [ 9.204285144973698, 48.791143420391641, 0.0 ], [ 9.204293569117404, 48.79114001181123, 0.0 ], [ 9.204287827457913, 48.791133703883062, 0.0 ], [ 9.20431160510023, 48.791124039873409, 0.0 ], [ 9.204317346936184, 48.79113039080157, 0.0 ], [ 9.204402863066218, 48.791095789111615, 0.0 ], [ 9.204397069245132, 48.791089447470149, 0.0 ], [ 9.204420982940878, 48.791079783196381, 0.0 ], [ 9.20442676939266, 48.791086116073188, 0.0 ], [ 9.204435148910072, 48.791082725528334, 0.0 ], [ 9.204439240903122, 48.791084966354248, 0.0 ], [ 9.204523810790215, 48.791131756312922, 0.0 ], [ 9.204580335708055, 48.791162884698338, 0.0 ], [ 9.204589556503018, 48.791167968667445, 0.0 ], [ 9.204569992373374, 48.791176276395333, 0.0 ], [ 9.204513983932967, 48.791248791359081, 0.0 ], [ 9.204504427308398, 48.791271585980766, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017c1b", "Latitude": 48.79092, "Longitude": 9.20424, "X_coordina": 3515079.47, "Y_coordina": 5405959.41, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3044, "PrimaryUsa": "office and administration", "PrimaryU00": 1213.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 283.1, "Total_wall": 879.4, "Total_wa00": 0.0, "Total_outw": 993.8, "Total_shar": 107.2, "Total_roof": 440.9, "Gross_volu": 3794.4, "Is_Gross_v": "false", "Heated_vol": 3790.6, "Ridge_mean": 32.5, "Eaves_mean": 7.51, "Storey_num": 13, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.423, "Heated_are": 1213.0, "Mean_Uvalu": 1.41, "Specific_d": "14,6", "Specific_s": 121.4, "Total_Year": 165029.0, "January_He": 31929.0, "February_H": 24341.0, "March_Heat": 18168.0, "April_Heat": 7480.0, "May_Heatin": 1156.0, "June_Heati": 23, "July_Heati": 0, "August_Hea": 1, "September_": 1911.0, "October_He": 9898.0, "November_H": 21439.0, "December_H": 30961.0, "PV_potenti": 13.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204360482497293, 48.790961101483816, 0.0 ], [ 9.204150600167127, 48.791045663230832, 0.0 ], [ 9.204039559264645, 48.790925341407288, 0.0 ], [ 9.204249441281103, 48.79084077986127, 0.0 ], [ 9.204360482497293, 48.790961101483816, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017c1c", "Latitude": 48.7911, "Longitude": 9.2042, "X_coordina": 3515076.45, "Y_coordina": 5405979.26, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3044, "PrimaryUsa": "office and administration", "PrimaryU00": 405.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 237.1, "Total_wall": 302.1, "Total_wa00": 0.0, "Total_outw": 433.4, "Total_shar": 101.9, "Total_roof": 237.1, "Gross_volu": 997.2, "Is_Gross_v": "false", "Heated_vol": 997.2, "Ridge_mean": 4.5, "Eaves_mean": 4.48, "Storey_num": 2, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.778, "Heated_are": 405.7, "Mean_Uvalu": 0.4, "Specific_d": "14,6", "Specific_s": 57.7, "Total_Year": 29339.0, "January_He": 5325.0, "February_H": 3965.0, "March_Heat": 2782.0, "April_Heat": 923.0, "May_Heatin": 97.0, "June_Heati": 3, "July_Heati": 0, "August_Hea": 1, "September_": 199.0, "October_He": 1453.0, "November_H": 3506.0, "December_H": 5159.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204255327449063, 48.791159143101105, 0.0 ], [ 9.20428626705608, 48.791146677547516, 0.0 ], [ 9.204309131902056, 48.791218823746654, 0.0 ], [ 9.204221544024074, 48.791254112810471, 0.0 ], [ 9.20401029523023, 48.791025208464958, 0.0 ], [ 9.20409881104184, 48.790989545595963, 0.0 ], [ 9.204255327449063, 48.791159143101105, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017c1d", "Latitude": 48.79099, "Longitude": 9.20448, "X_coordina": 3515096.86, "Y_coordina": 5405966.76, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3044, "PrimaryUsa": "office and administration", "PrimaryU00": 121.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 158.1, "Total_wall": 159.1, "Total_wa00": 0.0, "Total_outw": 337.5, "Total_shar": 106.9, "Total_roof": 158.1, "Gross_volu": 538.0, "Is_Gross_v": "false", "Heated_vol": 380.0, "Ridge_mean": 3.7, "Eaves_mean": 3.66, "Storey_num": 1, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.98, "Heated_are": 121.6, "Mean_Uvalu": 0.39, "Specific_d": "14,6", "Specific_s": 91.1, "Total_Year": 12855.0, "January_He": 2612.0, "February_H": 1839.0, "March_Heat": 1230.0, "April_Heat": 393.0, "May_Heatin": 45.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 90.0, "October_He": 660.0, "November_H": 1661.0, "December_H": 2549.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204308321012901, 48.79090458063019, 0.0 ], [ 9.204354597320108, 48.790885935785944, 0.0 ], [ 9.204565833803544, 48.791114825104081, 0.0 ], [ 9.204523810790215, 48.791131756312922, 0.0 ], [ 9.204439301968016, 48.791084982728862, 0.0 ], [ 9.204335761202305, 48.790971061750014, 0.0 ], [ 9.204360482497293, 48.790961101483816, 0.0 ], [ 9.204308321012901, 48.79090458063019, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017c18", "Latitude": 48.791, "Longitude": 9.20489, "X_coordina": 3515127.11, "Y_coordina": 5405967.91, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 383.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 174.9, "Total_wall": 274.7, "Total_wa00": 0.0, "Total_outw": 596.1, "Total_shar": 0.0, "Total_roof": 203.6, "Gross_volu": 1080.4, "Is_Gross_v": "false", "Heated_vol": 1018.1, "Ridge_mean": 7.6, "Eaves_mean": 5.09, "Storey_num": 3, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.624, "Heated_are": 383.5, "Mean_Uvalu": 0.52, "Specific_d": "24,8", "Specific_s": 57.2, "Total_Year": 31446.0, "January_He": 4898.0, "February_H": 3647.0, "March_Heat": 2544.0, "April_Heat": 840.0, "May_Heatin": 96.0, "June_Heati": 5, "July_Heati": 1, "August_Hea": 2, "September_": 233.0, "October_He": 1497.0, "November_H": 3354.0, "December_H": 4804.0, "PV_potenti": 9.89 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20493102923011, 48.790935628356308, 0.0 ], [ 9.204997023899253, 48.790999536509524, 0.0 ], [ 9.204765122294992, 48.791101382924424, 0.0 ], [ 9.204700354471644, 48.791037922076832, 0.0 ], [ 9.20493102923011, 48.790935628356308, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017b68", "Latitude": 48.78875, "Longitude": 9.21376, "X_coordina": 3515779.06, "Y_coordina": 5405719.4, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 100.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.0, "Total_wall": 59.3, "Total_wa00": 0.0, "Total_outw": 132.0, "Total_shar": 220.0, "Total_roof": 59.6, "Gross_volu": 359.4, "Is_Gross_v": "false", "Heated_vol": 313.4, "Ridge_mean": 9.6, "Eaves_mean": 6.03, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.49, "Heated_are": 100.3, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 47.2, "Total_Year": 6327.0, "January_He": 1150.0, "February_H": 827.0, "March_Heat": 510.0, "April_Heat": 102.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 13.0, "October_He": 254.0, "November_H": 747.0, "December_H": 1131.0, "PV_potenti": 1.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213720334500959, 48.788810763145605, 0.0 ], [ 9.213682791256248, 48.788782866558144, 0.0 ], [ 9.213642790435603, 48.788753086120884, 0.0 ], [ 9.213691934367439, 48.788724668991229, 0.0 ], [ 9.213738455243922, 48.788751559753877, 0.0 ], [ 9.213781156128091, 48.788776209497684, 0.0 ], [ 9.213720334500959, 48.788810763145605, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017911", "Latitude": 48.7881, "Longitude": 9.20716, "X_coordina": 3515294.54, "Y_coordina": 5405645.88, "LOD": "LOD2", "Year_of_co": 2004, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3080, "PrimaryUsa": "hall", "PrimaryU00": 28.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 35.7, "Total_wall": 59.7, "Total_wa00": 0.0, "Total_outw": 188.2, "Total_shar": 0.0, "Total_roof": 35.7, "Gross_volu": 103.0, "Is_Gross_v": "false", "Heated_vol": 89.7, "Ridge_mean": 2.9, "Eaves_mean": 2.87, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 1.359, "Heated_are": 28.7, "Mean_Uvalu": 0.4, "Specific_d": "non calculated", "Specific_s": 113.6, "Total_Year": 3261.0, "January_He": 710.0, "February_H": 524.0, "March_Heat": 383.0, "April_Heat": 152.0, "May_Heatin": 22.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 44.0, "October_He": 237.0, "November_H": 490.0, "December_H": 700.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207160974470442, 48.788095716746575, 0.0 ], [ 9.207150985931504, 48.788148699749499, 0.0 ], [ 9.20706998545057, 48.788141921304657, 0.0 ], [ 9.2070805169423, 48.78808857763773, 0.0 ], [ 9.207160974470442, 48.788095716746575, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017788", "Latitude": 48.79183, "Longitude": 9.2124, "X_coordina": 3515678.18, "Y_coordina": 5406062.02, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2523, "PrimaryUsa": "industry", "PrimaryU00": 36.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 38.9, "Total_wall": 37.2, "Total_wa00": 0.0, "Total_outw": 194.2, "Total_shar": 25.3, "Total_roof": 38.9, "Gross_volu": 60.4, "Is_Gross_v": "false", "Heated_vol": 60.4, "Ridge_mean": 1.6, "Eaves_mean": 1.57, "Storey_num": 1, "Average_St": 1.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.905, "Heated_are": 36.0, "Mean_Uvalu": 0.33, "Specific_d": "32,9", "Specific_s": 17.4, "Total_Year": 1810.0, "January_He": 197.0, "February_H": 113.0, "March_Heat": 44.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 6.0, "November_H": 76.0, "December_H": 187.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212288467391668, 48.791860923192218, 0.0 ], [ 9.2123010993118, 48.79182268237534, 0.0 ], [ 9.212410725551043, 48.791838576551967, 0.0 ], [ 9.21241579851988, 48.791879662280785, 0.0 ], [ 9.212288467391668, 48.791860923192218, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000173c1", "Latitude": 48.78987, "Longitude": 9.20534, "X_coordina": 3515160.09, "Y_coordina": 5405842.1, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 517.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 128.7, "Total_wall": 472.7, "Total_wa00": 0.0, "Total_outw": 727.0, "Total_shar": 39.4, "Total_roof": 247.4, "Gross_volu": 1746.1, "Is_Gross_v": "false", "Heated_vol": 1617.4, "Ridge_mean": 17.5, "Eaves_mean": 9.52, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 8, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.509, "Heated_are": 517.6, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 42.9, "Total_Year": 30416.0, "January_He": 5557.0, "February_H": 3829.0, "March_Heat": 2289.0, "April_Heat": 450.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 54.0, "October_He": 1105.0, "November_H": 3446.0, "December_H": 5471.0, "PV_potenti": 11.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20540502196293, 48.789894817193947, 0.0 ], [ 9.205361332405325, 48.789927267620165, 0.0 ], [ 9.205318864320137, 48.789958906539169, 0.0 ], [ 9.205272342042655, 48.789930843379068, 0.0 ], [ 9.205181081138637, 48.789878220845814, 0.0 ], [ 9.205222598065589, 48.789846943366712, 0.0 ], [ 9.205266420800875, 48.789813773366213, 0.0 ], [ 9.20540502196293, 48.789894817193947, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000173c4", "Latitude": 48.78998, "Longitude": 9.20525, "X_coordina": 3515153.83, "Y_coordina": 5405854.48, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 239.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 99.9, "Total_wall": 248.5, "Total_wa00": 0.0, "Total_outw": 435.1, "Total_shar": 114.6, "Total_roof": 115.0, "Gross_volu": 846.8, "Is_Gross_v": "false", "Heated_vol": 746.9, "Ridge_mean": 9.8, "Eaves_mean": 6.01, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.587, "Heated_are": 239.0, "Mean_Uvalu": 0.52, "Specific_d": "32,9", "Specific_s": 16.2, "Total_Year": 11723.0, "January_He": 1279.0, "February_H": 661.0, "March_Heat": 190.0, "April_Heat": 10.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 28.0, "November_H": 469.0, "December_H": 1233.0, "PV_potenti": 4.22 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205219697091556, 48.789936512472508, 0.0 ], [ 9.205222274409667, 48.789934439636063, 0.0 ], [ 9.205239599196528, 48.789944480207147, 0.0 ], [ 9.20524792026163, 48.789949231329153, 0.0 ], [ 9.205294306083385, 48.789977204818648, 0.0 ], [ 9.205173685514225, 48.790067073644082, 0.0 ], [ 9.205123484687824, 48.790038027818362, 0.0 ], [ 9.205153740203599, 48.790015133320942, 0.0 ], [ 9.205131504719645, 48.790002313852085, 0.0 ], [ 9.205134624948155, 48.789999880356021, 0.0 ], [ 9.205121938666144, 48.789992619139703, 0.0 ], [ 9.205206328518866, 48.789928802863123, 0.0 ], [ 9.205219697091556, 48.789936512472508, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00017289", "Latitude": 48.79116, "Longitude": 9.20318, "X_coordina": 3515001.46, "Y_coordina": 5405985.38, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 427.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 110.2, "Total_wall": 353.8, "Total_wa00": 0.0, "Total_outw": 567.3, "Total_shar": 147.8, "Total_roof": 181.7, "Gross_volu": 1444.8, "Is_Gross_v": "false", "Heated_vol": 1334.6, "Ridge_mean": 16.3, "Eaves_mean": 9.74, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 7, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.469, "Heated_are": 427.1, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 43.1, "Total_Year": 25176.0, "January_He": 4651.0, "February_H": 3171.0, "March_Heat": 1850.0, "April_Heat": 345.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 895.0, "November_H": 2864.0, "December_H": 4582.0, "PV_potenti": 8.28 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203085062773738, 48.791214964051008, 0.0 ], [ 9.203038955030539, 48.7911884279658, 0.0 ], [ 9.203139219333496, 48.791111366455908, 0.0 ], [ 9.203188059135071, 48.791140415541975, 0.0 ], [ 9.203239627441805, 48.791171078416752, 0.0 ], [ 9.203138673257151, 48.791245803216306, 0.0 ], [ 9.20313403511064, 48.79124311368961, 0.0 ], [ 9.203085062773738, 48.791214964051008, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000170c2", "Latitude": 48.79162, "Longitude": 9.2134, "X_coordina": 3515751.7, "Y_coordina": 5406038.49, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 559.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 149.6, "Total_wall": 265.3, "Total_wa00": 0.0, "Total_outw": 451.8, "Total_shar": 387.1, "Total_roof": 198.8, "Gross_volu": 1870.4, "Is_Gross_v": "false", "Heated_vol": 1747.1, "Ridge_mean": 14.8, "Eaves_mean": 10.15, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.341, "Heated_are": 559.1, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 28807.0, "January_He": 4880.0, "February_H": 3510.0, "March_Heat": 2178.0, "April_Heat": 402.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 41.0, "October_He": 1042.0, "November_H": 3142.0, "December_H": 4749.0, "PV_potenti": 9.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213317084834689, 48.791696980126702, 0.0 ], [ 9.213248141297074, 48.791678583548844, 0.0 ], [ 9.213322361403085, 48.791561185709128, 0.0 ], [ 9.213389535169732, 48.791579495598633, 0.0 ], [ 9.213455346111509, 48.791597358356945, 0.0 ], [ 9.213382485707189, 48.791714394067824, 0.0 ], [ 9.213317084834689, 48.791696980126702, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016f81", "Latitude": 48.79145, "Longitude": 9.21311, "X_coordina": 3515730.53, "Y_coordina": 5406019.77, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 471.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 132.3, "Total_wall": 236.0, "Total_wa00": 0.0, "Total_outw": 409.5, "Total_shar": 333.5, "Total_roof": 195.9, "Gross_volu": 1606.9, "Is_Gross_v": "false", "Heated_vol": 1474.6, "Ridge_mean": 14.8, "Eaves_mean": 9.49, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.368, "Heated_are": 471.9, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 37.8, "Total_Year": 25311.0, "January_He": 4372.0, "February_H": 3128.0, "March_Heat": 1925.0, "April_Heat": 352.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 931.0, "November_H": 2819.0, "December_H": 4263.0, "PV_potenti": 8.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213159574394737, 48.791429299432195, 0.0 ], [ 9.213087653273663, 48.791543275818867, 0.0 ], [ 9.213029472308447, 48.791527377055957, 0.0 ], [ 9.21296638582001, 48.791510048557683, 0.0 ], [ 9.213037900783657, 48.791396522615464, 0.0 ], [ 9.213100576961819, 48.791413402216136, 0.0 ], [ 9.213159574394737, 48.791429299432195, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016d18", "Latitude": 48.7955, "Longitude": 9.20731, "X_coordina": 3515303.68, "Y_coordina": 5406468.9, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 279.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 91.2, "Total_wall": 350.9, "Total_wa00": 0.0, "Total_outw": 615.6, "Total_shar": 0.0, "Total_roof": 109.0, "Gross_volu": 965.1, "Is_Gross_v": "false", "Heated_vol": 873.9, "Ridge_mean": 12.0, "Eaves_mean": 9.04, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 3, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.61, "Heated_are": 279.7, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 52.1, "Total_Year": 18996.0, "January_He": 3631.0, "February_H": 2500.0, "March_Heat": 1481.0, "April_Heat": 297.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 41.0, "October_He": 741.0, "November_H": 2278.0, "December_H": 3584.0, "PV_potenti": 5.41 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207297673219689, 48.7954791875881, 0.0 ], [ 9.207334815915916, 48.795508615644707, 0.0 ], [ 9.207333457807609, 48.79550933747818, 0.0 ], [ 9.207359812489113, 48.79553015228857, 0.0 ], [ 9.207313369008729, 48.795555774192145, 0.0 ], [ 9.207270048914507, 48.795579681908052, 0.0 ], [ 9.207246833974251, 48.795561109515539, 0.0 ], [ 9.207241670411456, 48.795563187049424, 0.0 ], [ 9.207199611571395, 48.795529811172528, 0.0 ], [ 9.207203681830132, 48.795526656525141, 0.0 ], [ 9.207180738412815, 48.795507903783523, 0.0 ], [ 9.207223651277346, 48.795484266604298, 0.0 ], [ 9.207269687157128, 48.795458825317255, 0.0 ], [ 9.207296315482122, 48.795479999344003, 0.0 ], [ 9.207297673219689, 48.7954791875881, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016cd0", "Latitude": 48.78983, "Longitude": 9.19693, "X_coordina": 3514542.39, "Y_coordina": 5405836.38, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1638.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 286.1, "Total_wall": 1018.6, "Total_wa00": 0.0, "Total_outw": 1384.4, "Total_shar": 0.0, "Total_roof": 462.8, "Gross_volu": 5406.5, "Is_Gross_v": "false", "Heated_vol": 5120.4, "Ridge_mean": 22.9, "Eaves_mean": 14.39, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 26, "Number_o00": 39, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.34, "Heated_are": 1638.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 33.5, "Total_Year": 80895.0, "January_He": 13690.0, "February_H": 9595.0, "March_Heat": 5872.0, "April_Heat": 1107.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 102.0, "October_He": 2659.0, "November_H": 8487.0, "December_H": 13403.0, "PV_potenti": 21.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196797354587384, 48.789777391435813, 0.0 ], [ 9.196803491733402, 48.789780708121761, 0.0 ], [ 9.196857370707107, 48.789742398485167, 0.0 ], [ 9.197051746910585, 48.789855819428546, 0.0 ], [ 9.196998407756379, 48.789892959224609, 0.0 ], [ 9.197006865185637, 48.789897980479246, 0.0 ], [ 9.196927753224896, 48.789956835925814, 0.0 ], [ 9.196720961598738, 48.78983552270595, 0.0 ], [ 9.196797354587384, 48.789777391435813, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016cd1", "Latitude": 48.78965, "Longitude": 9.19696, "X_coordina": 3514544.53, "Y_coordina": 5405816.6, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 27.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 34.2, "Total_wall": 51.5, "Total_wa00": 0.0, "Total_outw": 145.8, "Total_shar": 20.0, "Total_roof": 34.2, "Gross_volu": 118.5, "Is_Gross_v": "false", "Heated_vol": 85.7, "Ridge_mean": 3.5, "Eaves_mean": 3.46, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.179, "Heated_are": 27.4, "Mean_Uvalu": 0.33, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19691657582332, 48.789708845667981, 0.0 ], [ 9.196858739628418, 48.789674863497325, 0.0 ], [ 9.196887371572601, 48.789653502646239, 0.0 ], [ 9.196887914179626, 48.789653052100327, 0.0 ], [ 9.196888322806045, 48.789653141325324, 0.0 ], [ 9.196899721069707, 48.789644579091267, 0.0 ], [ 9.196913699085975, 48.789634483742994, 0.0 ], [ 9.196970847422179, 48.789666578666591, 0.0 ], [ 9.19691657582332, 48.789708845667981, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016cd2", "Latitude": 48.78978, "Longitude": 9.19717, "X_coordina": 3514560.21, "Y_coordina": 5405830.94, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 50.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 62.6, "Total_wall": 82.8, "Total_wa00": 0.0, "Total_outw": 251.7, "Total_shar": 0.0, "Total_roof": 62.6, "Gross_volu": 190.2, "Is_Gross_v": "false", "Heated_vol": 156.4, "Ridge_mean": 3.0, "Eaves_mean": 3.04, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 1.188, "Heated_are": 50.0, "Mean_Uvalu": 0.32, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19715706667796, 48.789851682519306, 0.0 ], [ 9.197047397601549, 48.789787754682784, 0.0 ], [ 9.197099779387196, 48.789749447494778, 0.0 ], [ 9.197100593472525, 48.789748816635971, 0.0 ], [ 9.197209852493486, 48.789812295506394, 0.0 ], [ 9.19715706667796, 48.789851682519306, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016be0", "Latitude": 48.78838, "Longitude": 9.21191, "X_coordina": 3515643.6, "Y_coordina": 5405677.82, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 120.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 42.5, "Total_wall": 117.2, "Total_wa00": 0.0, "Total_outw": 203.5, "Total_shar": 154.4, "Total_roof": 64.0, "Gross_volu": 420.2, "Is_Gross_v": "false", "Heated_vol": 377.6, "Ridge_mean": 12.2, "Eaves_mean": 8.21, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.571, "Heated_are": 120.8, "Mean_Uvalu": 0.43, "Specific_d": "15,8", "Specific_s": 42.5, "Total_Year": 7052.0, "January_He": 1294.0, "February_H": 873.0, "March_Heat": 527.0, "April_Heat": 124.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 13.0, "October_He": 241.0, "November_H": 775.0, "December_H": 1285.0, "PV_potenti": 2.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211811996908342, 48.788371145123641, 0.0 ], [ 9.211928930150405, 48.788378933198494, 0.0 ], [ 9.211921223720905, 48.788423279742211, 0.0 ], [ 9.211862824142178, 48.788419160783263, 0.0 ], [ 9.211804969303589, 48.788415130716466, 0.0 ], [ 9.211811996908342, 48.788371145123641, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016be1", "Latitude": 48.7884, "Longitude": 9.21209, "X_coordina": 3515657.05, "Y_coordina": 5405680.4, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 74.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 93.5, "Total_wall": 107.2, "Total_wa00": 0.0, "Total_outw": 295.0, "Total_shar": 34.2, "Total_roof": 93.5, "Gross_volu": 321.8, "Is_Gross_v": "false", "Heated_vol": 232.9, "Ridge_mean": 3.4, "Eaves_mean": 3.45, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 1.041, "Heated_are": 74.5, "Mean_Uvalu": 0.38, "Specific_d": "14,6", "Specific_s": 95.9, "Total_Year": 8236.0, "January_He": 1583.0, "February_H": 1171.0, "March_Heat": 860.0, "April_Heat": 355.0, "May_Heatin": 57.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 87.0, "October_He": 457.0, "November_H": 1033.0, "December_H": 1543.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212173829362984, 48.788461301941517, 0.0 ], [ 9.211921223720905, 48.788423279742211, 0.0 ], [ 9.211928930150405, 48.788378933198494, 0.0 ], [ 9.212178948007011, 48.788416510530794, 0.0 ], [ 9.212173829362984, 48.788461301941517, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016b01", "Latitude": 48.78964, "Longitude": 9.21575, "X_coordina": 3515925.27, "Y_coordina": 5405819.11, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 113.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 137.3, "Total_wall": 110.4, "Total_wa00": 0.0, "Total_outw": 387.9, "Total_shar": 183.7, "Total_roof": 137.3, "Gross_volu": 491.0, "Is_Gross_v": "false", "Heated_vol": 353.8, "Ridge_mean": 3.6, "Eaves_mean": 3.57, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.871, "Heated_are": 113.2, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 26.5, "Total_Year": 6715.0, "January_He": 891.0, "February_H": 549.0, "March_Heat": 234.0, "April_Heat": 24.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 42.0, "November_H": 397.0, "December_H": 859.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215627586377737, 48.789719752965965, 0.0 ], [ 9.215633443708544, 48.789721000929624, 0.0 ], [ 9.215633840424447, 48.789718302477738, 0.0 ], [ 9.215637108548087, 48.789718745976558, 0.0 ], [ 9.215651512746534, 48.789681940237507, 0.0 ], [ 9.215647565323868, 48.789681767782028, 0.0 ], [ 9.215648366459867, 48.789678169336405, 0.0 ], [ 9.215644285257923, 48.789678536673151, 0.0 ], [ 9.215647238811503, 48.789669089160761, 0.0 ], [ 9.215653095751572, 48.789670247200512, 0.0 ], [ 9.215654171767104, 48.789667277705576, 0.0 ], [ 9.215656896677956, 48.789667991991962, 0.0 ], [ 9.215671435397427, 48.789630826303643, 0.0 ], [ 9.215667622913964, 48.789630383825227, 0.0 ], [ 9.215670060226165, 48.789627501704437, 0.0 ], [ 9.215663931493435, 48.789626434098139, 0.0 ], [ 9.215666891205892, 48.789618425351811, 0.0 ], [ 9.215673155258271, 48.789619312857248, 0.0 ], [ 9.215673551971269, 48.789616614405197, 0.0 ], [ 9.215676139246915, 48.789616969254354, 0.0 ], [ 9.215690546471096, 48.789580882893191, 0.0 ], [ 9.215687954187178, 48.789579359046449, 0.0 ], [ 9.215689848672666, 48.789576837636417, 0.0 ], [ 9.215684945536902, 48.789575947583074, 0.0 ], [ 9.215686945282789, 48.78956623208493, 0.0 ], [ 9.215693075935649, 48.789567749304595, 0.0 ], [ 9.215693879378991, 48.789564690396105, 0.0 ], [ 9.215697556922789, 48.78956540289731, 0.0 ], [ 9.215698226972526, 48.789562973704108, 0.0 ], [ 9.215708443057242, 48.789565112736412, 0.0 ], [ 9.215706694299769, 48.789569881964738, 0.0 ], [ 9.215775604997901, 48.789581083248841, 0.0 ], [ 9.215777906981469, 48.789578381226569, 0.0 ], [ 9.215787032801023, 48.789580162600124, 0.0 ], [ 9.215785550063876, 48.789583492552993, 0.0 ], [ 9.215728514633085, 48.78973925722287, 0.0 ], [ 9.215735052426679, 48.789740503906664, 0.0 ], [ 9.215728868148771, 48.78975823044761, 0.0 ], [ 9.21571320720172, 48.789755831845248, 0.0 ], [ 9.215715242409447, 48.789754389254895, 0.0 ], [ 9.215709929439308, 48.789753140275785, 0.0 ], [ 9.215713299353858, 48.789745580378266, 0.0 ], [ 9.215643295858447, 48.789733481867131, 0.0 ], [ 9.215640595989019, 48.789738612569813, 0.0 ], [ 9.215630108459324, 48.78973665388709, 0.0 ], [ 9.215631315945753, 48.789732605062603, 0.0 ], [ 9.215627911729683, 48.789732161818435, 0.0 ], [ 9.215628309216532, 48.789729643212418, 0.0 ], [ 9.215624086910124, 48.789728841805363, 0.0 ], [ 9.215627586377737, 48.789719752965965, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016b02", "Latitude": 48.78977, "Longitude": 9.21597, "X_coordina": 3515941.53, "Y_coordina": 5405833.41, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 479.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 199.6, "Total_wall": 286.7, "Total_wa00": 0.0, "Total_outw": 519.2, "Total_shar": 315.0, "Total_roof": 199.6, "Gross_volu": 1612.6, "Is_Gross_v": "false", "Heated_vol": 1496.7, "Ridge_mean": 8.1, "Eaves_mean": 8.08, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.439, "Heated_are": 479.0, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 10.0, "Total_Year": 20512.0, "January_He": 1594.0, "February_H": 897.0, "March_Heat": 276.0, "April_Heat": 12.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 22.0, "November_H": 522.0, "December_H": 1451.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.216053445353474, 48.78985240148711, 0.0 ], [ 9.215773033945435, 48.789806706468198, 0.0 ], [ 9.215771125576131, 48.789805990654678, 0.0 ], [ 9.215790069679414, 48.789748853651304, 0.0 ], [ 9.21579306562313, 48.789749297655703, 0.0 ], [ 9.21580180824037, 48.789725181739193, 0.0 ], [ 9.216069553427655, 48.789768742286569, 0.0 ], [ 9.216083722406221, 48.789772312647187, 0.0 ], [ 9.216053445353474, 48.78985240148711, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016b03", "Latitude": 48.78977, "Longitude": 9.21574, "X_coordina": 3515924.42, "Y_coordina": 5405833.9, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 94.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 112.0, "Total_wall": 87.2, "Total_wa00": 0.0, "Total_outw": 296.2, "Total_shar": 114.5, "Total_roof": 112.0, "Gross_volu": 406.7, "Is_Gross_v": "false", "Heated_vol": 294.6, "Ridge_mean": 3.6, "Eaves_mean": 3.63, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.847, "Heated_are": 94.3, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 25.7, "Total_Year": 5522.0, "January_He": 724.0, "February_H": 443.0, "March_Heat": 190.0, "April_Heat": 19.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 33.0, "November_H": 320.0, "December_H": 695.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215771125576131, 48.789805990654678, 0.0 ], [ 9.215773033945435, 48.789806706468198, 0.0 ], [ 9.215758098540446, 48.789846570620405, 0.0 ], [ 9.215598891931716, 48.789819981617882, 0.0 ], [ 9.215626340275266, 48.789746552542383, 0.0 ], [ 9.215727254707337, 48.789762819575351, 0.0 ], [ 9.215728868148771, 48.78975823044761, 0.0 ], [ 9.215735052426679, 48.789740503906664, 0.0 ], [ 9.215790069679414, 48.789748853651304, 0.0 ], [ 9.215771125576131, 48.789805990654678, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016b04", "Latitude": 48.7897, "Longitude": 9.21622, "X_coordina": 3515959.47, "Y_coordina": 5405825.41, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 318.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 175.3, "Total_wall": 196.5, "Total_wa00": 0.0, "Total_outw": 421.5, "Total_shar": 116.8, "Total_roof": 175.3, "Gross_volu": 820.7, "Is_Gross_v": "false", "Heated_vol": 820.7, "Ridge_mean": 4.7, "Eaves_mean": 4.68, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.667, "Heated_are": 318.0, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 8.6, "Total_Year": 13168.0, "January_He": 950.0, "February_H": 473.0, "March_Heat": 126.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 10.0, "November_H": 271.0, "December_H": 886.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21609162805566, 48.789711779206904, 0.0 ], [ 9.216095167979796, 48.789712132259098, 0.0 ], [ 9.216109032495556, 48.78967649648272, 0.0 ], [ 9.216124515799601, 48.789637530491959, 0.0 ], [ 9.216272825906751, 48.789662070989309, 0.0 ], [ 9.216224813073511, 48.78979524812619, 0.0 ], [ 9.216083722406221, 48.789772312647187, 0.0 ], [ 9.216069553427655, 48.789768742286569, 0.0 ], [ 9.21609162805566, 48.789711779206904, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016b05", "Latitude": 48.78966, "Longitude": 9.21596, "X_coordina": 3515940.92, "Y_coordina": 5405820.88, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 627.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 315.9, "Total_wall": 172.6, "Total_wa00": 0.0, "Total_outw": 345.7, "Total_shar": 553.9, "Total_roof": 315.9, "Gross_volu": 1544.7, "Is_Gross_v": "false", "Heated_vol": 1295.2, "Ridge_mean": 5.4, "Eaves_mean": 3.81, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.521, "Heated_are": 627.7, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 2.0, "Total_Year": 21892.0, "January_He": 525.0, "February_H": 151.0, "March_Heat": 17.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 1.0, "November_H": 67.0, "December_H": 506.0, "PV_potenti": 14.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21609162805566, 48.789711779206904, 0.0 ], [ 9.216069553427655, 48.789768742286569, 0.0 ], [ 9.21580180824037, 48.789725181739193, 0.0 ], [ 9.21579306562313, 48.789749297655703, 0.0 ], [ 9.215790069679414, 48.789748853651304, 0.0 ], [ 9.215735052426679, 48.789740503906664, 0.0 ], [ 9.215728514633085, 48.78973925722287, 0.0 ], [ 9.215785550063876, 48.789583492552993, 0.0 ], [ 9.215890147169549, 48.789601730863332, 0.0 ], [ 9.215877242487309, 48.789639073363681, 0.0 ], [ 9.216101548239116, 48.789676690374314, 0.0 ], [ 9.216102902203112, 48.789675069208172, 0.0 ], [ 9.216109032495556, 48.78967649648272, 0.0 ], [ 9.216095167979796, 48.789712132259098, 0.0 ], [ 9.21609162805566, 48.789711779206904, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016b06", "Latitude": 48.78982, "Longitude": 9.21536, "X_coordina": 3515896.78, "Y_coordina": 5405839.32, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 465.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 215.5, "Total_wall": 452.1, "Total_wa00": 0.0, "Total_outw": 804.9, "Total_shar": 0.0, "Total_roof": 220.5, "Gross_volu": 1668.8, "Is_Gross_v": "false", "Heated_vol": 1453.3, "Ridge_mean": 9.2, "Eaves_mean": 6.74, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.567, "Heated_are": 465.1, "Mean_Uvalu": 0.48, "Specific_d": "32,9", "Specific_s": 13.8, "Total_Year": 21706.0, "January_He": 2158.0, "February_H": 1072.0, "March_Heat": 308.0, "April_Heat": 17.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 40.0, "November_H": 731.0, "December_H": 2098.0, "PV_potenti": 6.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215200898266341, 48.789774595198487, 0.0 ], [ 9.215471236645993, 48.789819950762357, 0.0 ], [ 9.215435972842283, 48.789911648918022, 0.0 ], [ 9.215165906185543, 48.78986629276443, 0.0 ], [ 9.215200898266341, 48.789774595198487, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016b07", "Latitude": 48.79033, "Longitude": 9.21644, "X_coordina": 3515975.59, "Y_coordina": 5405895.58, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 26524.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 7923.0, "Total_wall": 419.6, "Total_wa00": 0.0, "Total_outw": 2300.3, "Total_shar": 0.0, "Total_roof": 9108.7, "Gross_volu": 90812.0, "Is_Gross_v": "false", "Heated_vol": 82888.9, "Ridge_mean": 24.9, "Eaves_mean": 1.06, "Storey_num": 9, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.196, "Heated_are": 26524.5, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 1.6, "Total_Year": 915284.0, "January_He": 18150.0, "February_H": 7340.0, "March_Heat": 971.0, "April_Heat": 12.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 20.0, "November_H": 2253.0, "December_H": 14944.0, "PV_potenti": 403.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215907216054475, 48.79002748727045, 0.0 ], [ 9.216010812923839, 48.789971000807945, 0.0 ], [ 9.216129169293332, 48.789928874334343, 0.0 ], [ 9.216257801531443, 48.789902824773179, 0.0 ], [ 9.216391406796481, 48.789893941137969, 0.0 ], [ 9.216525222387942, 48.789902322289933, 0.0 ], [ 9.216653940464349, 48.789927888290208, 0.0 ], [ 9.216772657182, 48.789969569302791, 0.0 ], [ 9.216876874219198, 48.790025665280567, 0.0 ], [ 9.216962364219281, 48.790094205906868, 0.0 ], [ 9.217026121107246, 48.790172409255398, 0.0 ], [ 9.21706554625259, 48.790257312780199, 0.0 ], [ 9.21707899246563, 48.790345682360289, 0.0 ], [ 9.217066308780336, 48.790434101191408, 0.0 ], [ 9.21702761641667, 48.790519151938796, 0.0 ], [ 9.21696453442104, 48.790597594275773, 0.0 ], [ 9.21687963531612, 48.790666365914817, 0.0 ], [ 9.216775902289182, 48.790722943331367, 0.0 ], [ 9.216657544211884, 48.790764980542797, 0.0 ], [ 9.216529046075957, 48.790791030293867, 0.0 ], [ 9.216395302748655, 48.790800004269983, 0.0 ], [ 9.216261620500701, 48.790791532794188, 0.0 ], [ 9.216132764318861, 48.79076596661848, 0.0 ], [ 9.216014046635101, 48.790724374877769, 0.0 ], [ 9.215909964816204, 48.790668187949336, 0.0 ], [ 9.21582433956052, 48.790599736726357, 0.0 ], [ 9.215760720086941, 48.790521532461462, 0.0 ], [ 9.215721296931452, 48.790436628490696, 0.0 ], [ 9.215707716982049, 48.790348259004375, 0.0 ], [ 9.215720539124863, 48.790259840062411, 0.0 ], [ 9.215759233499522, 48.790174789746509, 0.0 ], [ 9.215822180754683, 48.790096348316212, 0.0 ], [ 9.215907216054475, 48.79002748727045, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016abc", "Latitude": 48.78782, "Longitude": 9.20698, "X_coordina": 3515281.09, "Y_coordina": 5405614.64, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 234.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 71.8, "Total_wall": 195.9, "Total_wa00": 0.0, "Total_outw": 334.9, "Total_shar": 152.5, "Total_roof": 114.0, "Gross_volu": 803.1, "Is_Gross_v": "false", "Heated_vol": 731.3, "Ridge_mean": 14.7, "Eaves_mean": 8.87, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 3, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.506, "Heated_are": 234.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 45.0, "Total_Year": 14243.0, "January_He": 2641.0, "February_H": 1788.0, "March_Heat": 1083.0, "April_Heat": 229.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 30.0, "October_He": 527.0, "November_H": 1629.0, "December_H": 2601.0, "PV_potenti": 4.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206866513207828, 48.78787215631646, 0.0 ], [ 9.206880367490166, 48.787832565016863, 0.0 ], [ 9.206895702066513, 48.787788924490961, 0.0 ], [ 9.206996195971836, 48.787803851074678, 0.0 ], [ 9.206966599010698, 48.787887083658894, 0.0 ], [ 9.206866513207828, 48.78787215631646, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016a88", "Latitude": 48.7889, "Longitude": 9.20513, "X_coordina": 3515145.09, "Y_coordina": 5405735.09, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 633.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 124.1, "Total_wall": 527.1, "Total_wa00": 0.0, "Total_outw": 664.1, "Total_shar": 189.3, "Total_roof": 176.3, "Gross_volu": 2104.9, "Is_Gross_v": "false", "Heated_vol": 1980.9, "Ridge_mean": 19.2, "Eaves_mean": 13.95, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 10, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.411, "Heated_are": 633.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.7, "Total_Year": 35840.0, "January_He": 6288.0, "February_H": 4462.0, "March_Heat": 2849.0, "April_Heat": 623.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 69.0, "October_He": 1341.0, "November_H": 3995.0, "December_H": 6150.0, "PV_potenti": 7.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205033083151726, 48.788993815694937, 0.0 ], [ 9.205021375761051, 48.788859310764821, 0.0 ], [ 9.20512220145347, 48.78885508465266, 0.0 ], [ 9.205123814988008, 48.788883677498191, 0.0 ], [ 9.205146737020387, 48.78889811437358, 0.0 ], [ 9.205147315468036, 48.78890647624219, 0.0 ], [ 9.205142280158524, 48.788906485212145, 0.0 ], [ 9.205148469607446, 48.788989293863487, 0.0 ], [ 9.205033083151726, 48.788993815694937, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016a20", "Latitude": 48.78808, "Longitude": 9.19894, "X_coordina": 3514690.24, "Y_coordina": 5405641.77, "LOD": "LOD2", "Year_of_co": 1914, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 858.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 198.6, "Total_wall": 575.7, "Total_wa00": 0.0, "Total_outw": 898.8, "Total_shar": 262.4, "Total_roof": 265.7, "Gross_volu": 2881.2, "Is_Gross_v": "false", "Heated_vol": 2682.6, "Ridge_mean": 18.1, "Eaves_mean": 12.02, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 14, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.378, "Heated_are": 858.4, "Mean_Uvalu": 0.59, "Specific_d": "15,8", "Specific_s": 38.0, "Total_Year": 46255.0, "January_He": 8604.0, "February_H": 5570.0, "March_Heat": 2981.0, "April_Heat": 438.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 47.0, "October_He": 1369.0, "November_H": 5145.0, "December_H": 8493.0, "PV_potenti": 12.23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198819109688531, 48.788182899542107, 0.0 ], [ 9.19881831092577, 48.788187397103989, 0.0 ], [ 9.198816403923741, 48.788186950778147, 0.0 ], [ 9.198819554238796, 48.78812318946656, 0.0 ], [ 9.198822447647711, 48.78806329531502, 0.0 ], [ 9.198849945083088, 48.788065226156483, 0.0 ], [ 9.198853640407384, 48.788001643748792, 0.0 ], [ 9.198966604038381, 48.788004326182403, 0.0 ], [ 9.198957269829103, 48.788190574204457, 0.0 ], [ 9.198871253604649, 48.788188474693015, 0.0 ], [ 9.198871100460554, 48.788184158621988, 0.0 ], [ 9.198819109688531, 48.788182899542107, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000169d1", "Latitude": 48.7941, "Longitude": 9.21272, "X_coordina": 3515701.44, "Y_coordina": 5406314.73, "LOD": "LOD2", "Year_of_co": 2009, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 1223.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 749.9, "Total_wall": 561.0, "Total_wa00": 0.0, "Total_outw": 1150.6, "Total_shar": 0.0, "Total_roof": 749.9, "Gross_volu": 4377.6, "Is_Gross_v": "false", "Heated_vol": 3824.8, "Ridge_mean": 5.8, "Eaves_mean": 5.84, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.489, "Heated_are": 1223.9, "Mean_Uvalu": 0.37, "Specific_d": "non calculated", "Specific_s": 78.1, "Total_Year": 95579.0, "January_He": 17770.0, "February_H": 14111.0, "March_Heat": 11873.0, "April_Heat": 6701.0, "May_Heatin": 2331.0, "June_Heati": 239, "July_Heati": 32, "August_Hea": 79, "September_": 3496.0, "October_He": 8372.0, "November_H": 13220.0, "December_H": 17356.0, "PV_potenti": 35.84 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21294397394696, 48.794125607434701, 0.0 ], [ 9.212722300485256, 48.794296242419421, 0.0 ], [ 9.212412600125399, 48.794120473955587, 0.0 ], [ 9.212634138143693, 48.793949929735035, 0.0 ], [ 9.21294397394696, 48.794125607434701, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001661e", "Latitude": 48.78784, "Longitude": 9.21039, "X_coordina": 3515532.33, "Y_coordina": 5405617.75, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 172.8, "SecondaryU": "retail", "Secondar00": 51.6, "BuildingTy": "MFH", "Footprint_": 64.5, "Total_wall": 190.4, "Total_wa00": 0.0, "Total_outw": 287.2, "Total_shar": 187.7, "Total_roof": 111.2, "Gross_volu": 709.5, "Is_Gross_v": "false", "Heated_vol": 701.1, "Ridge_mean": 14.1, "Eaves_mean": 7.81, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 3, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.519, "Heated_are": 224.3, "Mean_Uvalu": 0.49, "Specific_d": "29,0", "Specific_s": 45.0, "Total_Year": 16607.0, "January_He": 2555.0, "February_H": 1709.0, "March_Heat": 1017.0, "April_Heat": 231.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 31.0, "October_He": 486.0, "November_H": 1535.0, "December_H": 2529.0, "PV_potenti": 4.99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210362012932993, 48.787828236063746, 0.0 ], [ 9.210420430880051, 48.787836941856845, 0.0 ], [ 9.2103994664091, 48.787900376343558, 0.0 ], [ 9.210340230744618, 48.787891402262474, 0.0 ], [ 9.210280450003198, 48.787882249298924, 0.0 ], [ 9.210283542048566, 48.787873161362917, 0.0 ], [ 9.210301960841219, 48.787819263454253, 0.0 ], [ 9.210362012932993, 48.787828236063746, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016546", "Latitude": 48.78863, "Longitude": 9.19357, "X_coordina": 3514295.96, "Y_coordina": 5405702.64, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2461, "PrimaryUsa": "non-heated", "PrimaryU00": 19055.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 4096.3, "Total_wall": 5768.4, "Total_wa00": 0.0, "Total_outw": 6995.3, "Total_shar": 1815.7, "Total_roof": 4098.6, "Gross_volu": 63644.2, "Is_Gross_v": "false", "Heated_vol": 59547.8, "Ridge_mean": 25.8, "Eaves_mean": 3.94, "Storey_num": 9, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.223, "Heated_are": 19055.3, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 194.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193586689185684, 48.789114431277994, 0.0 ], [ 9.193552862750362, 48.789094704938222, 0.0 ], [ 9.193555169709796, 48.789092992511442, 0.0 ], [ 9.193075733654901, 48.788812426291514, 0.0 ], [ 9.193130557397046, 48.788771598944791, 0.0 ], [ 9.19312728366455, 48.788769626115112, 0.0 ], [ 9.193337623873338, 48.788613615321196, 0.0 ], [ 9.193003315061983, 48.788417243332724, 0.0 ], [ 9.193227298530074, 48.788270471999226, 0.0 ], [ 9.193348520585774, 48.788191045785055, 0.0 ], [ 9.193934622491424, 48.788536086414105, 0.0 ], [ 9.193776124668355, 48.78865415321745, 0.0 ], [ 9.19405232632278, 48.78881492120361, 0.0 ], [ 9.193905457112223, 48.788913634998991, 0.0 ], [ 9.19390204725064, 48.788911662420588, 0.0 ], [ 9.193847495123023, 48.788952219905184, 0.0 ], [ 9.193586689185684, 48.789114431277994, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016547", "Latitude": 48.78897, "Longitude": 9.19329, "X_coordina": 3514275.38, "Y_coordina": 5405740.01, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 4624.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 952.3, "Total_wall": 1869.4, "Total_wa00": 0.0, "Total_outw": 2334.5, "Total_shar": 1256.3, "Total_roof": 952.4, "Gross_volu": 14452.0, "Is_Gross_v": "false", "Heated_vol": 14452.0, "Ridge_mean": 23.2, "Eaves_mean": 23.23, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.261, "Heated_are": 4624.6, "Mean_Uvalu": 0.35, "Specific_d": "73,0", "Specific_s": 41.1, "Total_Year": 527796.0, "January_He": 41853.0, "February_H": 32470.0, "March_Heat": 24325.0, "April_Heat": 9573.0, "May_Heatin": 1078.0, "June_Heati": 28, "July_Heati": 3, "August_Hea": 6, "September_": 1844.0, "October_He": 11693.0, "November_H": 27334.0, "December_H": 39943.0, "PV_potenti": 42.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193491525688808, 48.789140489228238, 0.0 ], [ 9.193483751261905, 48.78913600610926, 0.0 ], [ 9.193358494538408, 48.789228478154975, 0.0 ], [ 9.19291204499573, 48.788926184268966, 0.0 ], [ 9.193027937839037, 48.788840562597436, 0.0 ], [ 9.19299656658696, 48.788822180832568, 0.0 ], [ 9.193093593729849, 48.78874989941044, 0.0 ], [ 9.19312728366455, 48.788769626115112, 0.0 ], [ 9.193130557397046, 48.788771598944791, 0.0 ], [ 9.193075733654901, 48.788812426291514, 0.0 ], [ 9.193555169709796, 48.789092992511442, 0.0 ], [ 9.193552862750362, 48.789094704938222, 0.0 ], [ 9.193586689185684, 48.789114431277994, 0.0 ], [ 9.19354500809005, 48.789140129578861, 0.0 ], [ 9.193515273348003, 48.789122734365598, 0.0 ], [ 9.193491525688808, 48.789140489228238, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001646f", "Latitude": 48.7878, "Longitude": 9.19758, "X_coordina": 3514590.88, "Y_coordina": 5405610.58, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1018.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 243.8, "Total_wall": 679.7, "Total_wa00": 0.0, "Total_outw": 1044.0, "Total_shar": 42.1, "Total_roof": 344.0, "Gross_volu": 3426.2, "Is_Gross_v": "false", "Heated_vol": 3182.4, "Ridge_mean": 17.9, "Eaves_mean": 10.19, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 16, "Number_o00": 30, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.388, "Heated_are": 1018.4, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 35.2, "Total_Year": 52002.0, "January_He": 8905.0, "February_H": 6291.0, "March_Heat": 3821.0, "April_Heat": 703.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1763.0, "November_H": 5584.0, "December_H": 8720.0, "PV_potenti": 14.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197476441454768, 48.787900511565525, 0.0 ], [ 9.197392322125911, 48.787861449072679, 0.0 ], [ 9.19743029622702, 48.787828202142407, 0.0 ], [ 9.197554118644836, 48.787719811620001, 0.0 ], [ 9.197556435994914, 48.787720796804727, 0.0 ], [ 9.197566336759403, 48.787712237070878, 0.0 ], [ 9.197627552145157, 48.787740817678824, 0.0 ], [ 9.197634064161999, 48.787735680854041, 0.0 ], [ 9.197684098275086, 48.787758615430285, 0.0 ], [ 9.197669729980161, 48.787773117804754, 0.0 ], [ 9.197678046441418, 48.787776970246313, 0.0 ], [ 9.197570808730186, 48.787880746341067, 0.0 ], [ 9.197526476719082, 48.787923715978579, 0.0 ], [ 9.197476441454768, 48.787900511565525, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016471", "Latitude": 48.7879, "Longitude": 9.19765, "X_coordina": 3514595.51, "Y_coordina": 5405622.03, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 44.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.5, "Total_wall": 53.2, "Total_wa00": 0.0, "Total_outw": 168.5, "Total_shar": 42.2, "Total_roof": 49.5, "Gross_volu": 113.4, "Is_Gross_v": "false", "Heated_vol": 113.4, "Ridge_mean": 2.3, "Eaves_mean": 2.3, "Storey_num": 1, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.342, "Heated_are": 44.7, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197526476719082, 48.787923715978579, 0.0 ], [ 9.197570808730186, 48.787880746341067, 0.0 ], [ 9.197676986660253, 48.787922918167688, 0.0 ], [ 9.197619299112212, 48.787961054888477, 0.0 ], [ 9.197526476719082, 48.787923715978579, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001631b", "Latitude": 48.78843, "Longitude": 9.21232, "X_coordina": 3515673.48, "Y_coordina": 5405683.68, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 112.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 42.5, "Total_wall": 127.9, "Total_wa00": 0.0, "Total_outw": 211.8, "Total_shar": 107.9, "Total_roof": 59.0, "Gross_volu": 393.0, "Is_Gross_v": "false", "Heated_vol": 350.5, "Ridge_mean": 11.1, "Eaves_mean": 7.81, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.631, "Heated_are": 112.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 49.0, "Total_Year": 7271.0, "January_He": 1424.0, "February_H": 921.0, "March_Heat": 519.0, "April_Heat": 108.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 13.0, "October_He": 243.0, "November_H": 839.0, "December_H": 1422.0, "PV_potenti": 1.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212272264734723, 48.788471461761986, 0.0 ], [ 9.212213599341464, 48.788468872172899, 0.0 ], [ 9.212218854797303, 48.788424260355654, 0.0 ], [ 9.212334007318059, 48.788429263667645, 0.0 ], [ 9.212330113604624, 48.788474052826686, 0.0 ], [ 9.212272264734723, 48.788471461761986, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016158", "Latitude": 48.78992, "Longitude": 9.20487, "X_coordina": 3515125.59, "Y_coordina": 5405848.13, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 420.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 94.9, "Total_wall": 304.3, "Total_wa00": 0.0, "Total_outw": 457.4, "Total_shar": 217.3, "Total_roof": 163.4, "Gross_volu": 1340.4, "Is_Gross_v": "false", "Heated_vol": 1314.5, "Ridge_mean": 15.9, "Eaves_mean": 10.51, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.425, "Heated_are": 420.6, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 38.3, "Total_Year": 22766.0, "January_He": 4131.0, "February_H": 2774.0, "March_Heat": 1579.0, "April_Heat": 278.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 30.0, "October_He": 736.0, "November_H": 2482.0, "December_H": 4084.0, "PV_potenti": 7.13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20491965839487, 48.78994801745106, 0.0 ], [ 9.204845032760385, 48.790003453251771, 0.0 ], [ 9.204818158507589, 48.789987764417688, 0.0 ], [ 9.204786236779755, 48.789969117073547, 0.0 ], [ 9.204756361581852, 48.789951725012514, 0.0 ], [ 9.204727850253427, 48.789935049908081, 0.0 ], [ 9.204802475184108, 48.789879434336598, 0.0 ], [ 9.20491965839487, 48.78994801745106, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00016072", "Latitude": 48.79484, "Longitude": 9.20717, "X_coordina": 3515293.44, "Y_coordina": 5406395.11, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1421.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 258.8, "Total_wall": 1330.5, "Total_wa00": 0.0, "Total_outw": 1741.9, "Total_shar": 0.0, "Total_roof": 258.8, "Gross_volu": 4595.1, "Is_Gross_v": "false", "Heated_vol": 4441.0, "Ridge_mean": 18.9, "Eaves_mean": 18.94, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 23, "Number_o00": 41, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.412, "Heated_are": 1421.1, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 34.7, "Total_Year": 71764.0, "January_He": 12280.0, "February_H": 8555.0, "March_Heat": 5240.0, "April_Heat": 1057.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 98.0, "October_He": 2369.0, "November_H": 7588.0, "December_H": 12035.0, "PV_potenti": 9.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207150265884314, 48.794949713217996, 0.0 ], [ 9.207144681846106, 48.794948824026903, 0.0 ], [ 9.206985198794879, 48.794924022115538, 0.0 ], [ 9.207003363301006, 48.794873002811464, 0.0 ], [ 9.207031963967436, 48.794877447575203, 0.0 ], [ 9.207073138574582, 48.794762271396252, 0.0 ], [ 9.207214235087545, 48.794784228718179, 0.0 ], [ 9.207271163780334, 48.794793028701164, 0.0 ], [ 9.207236987836282, 48.794888948715773, 0.0 ], [ 9.207165892954196, 48.794877476494328, 0.0 ], [ 9.207163873584957, 48.794882875540218, 0.0 ], [ 9.207174224643859, 48.794884565466567, 0.0 ], [ 9.207150265884314, 48.794949713217996, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00015ded", "Latitude": 48.78995, "Longitude": 9.21049, "X_coordina": 3515539.03, "Y_coordina": 5405852.27, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3010, "PrimaryUsa": "office and administration", "PrimaryU00": 4710.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1101.1, "Total_wall": 2785.6, "Total_wa00": 0.0, "Total_outw": 4115.2, "Total_shar": 4.5, "Total_roof": 1656.5, "Gross_volu": 15659.9, "Is_Gross_v": "false", "Heated_vol": 14718.9, "Ridge_mean": 19.1, "Eaves_mean": 5.69, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.367, "Heated_are": 4710.0, "Mean_Uvalu": 0.39, "Specific_d": "14,6", "Specific_s": 54.1, "Total_Year": 323468.99999999994, "January_He": 57123.0, "February_H": 43139.0, "March_Heat": 30952.0, "April_Heat": 11051.0, "May_Heatin": 1239.0, "June_Heati": 41, "July_Heati": 4, "August_Hea": 9, "September_": 2398.0, "October_He": 15964.0, "November_H": 37391.0, "December_H": 55343.0, "PV_potenti": 72.06 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210822197161107, 48.789924683764404, 0.0 ], [ 9.210754236194443, 48.789945130899184, 0.0 ], [ 9.210722880180553, 48.789899596998012, 0.0 ], [ 9.210484611263926, 48.789971881719651, 0.0 ], [ 9.210526922211999, 48.790033581912077, 0.0 ], [ 9.210515095710925, 48.790036840782257, 0.0 ], [ 9.210539068765794, 48.790074295110159, 0.0 ], [ 9.210540177821169, 48.790079148958512, 0.0 ], [ 9.210533148407567, 48.790090492186842, 0.0 ], [ 9.210527308463572, 48.790093380419172, 0.0 ], [ 9.210438552045375, 48.790120339882932, 0.0 ], [ 9.210435286197068, 48.790120435774334, 0.0 ], [ 9.2104248014207, 48.790119106078421, 0.0 ], [ 9.210416075322156, 48.790115255306617, 0.0 ], [ 9.210410062806721, 48.790109421256375, 0.0 ], [ 9.210409514300451, 48.790108433098645, 0.0 ], [ 9.210385155979333, 48.790076464789202, 0.0 ], [ 9.210370879040894, 48.79007954827393, 0.0 ], [ 9.210329250586142, 48.79001829639639, 0.0 ], [ 9.210091250098335, 48.790089950347472, 0.0 ], [ 9.210120837581757, 48.790135757416671, 0.0 ], [ 9.210056407700659, 48.790154579071022, 0.0 ], [ 9.209990754436747, 48.790173762614579, 0.0 ], [ 9.209957070762099, 48.790124725729783, 0.0 ], [ 9.209939681202721, 48.790099398969396, 0.0 ], [ 9.2098932630158, 48.790031681164962, 0.0 ], [ 9.209958778538946, 48.790012138233067, 0.0 ], [ 9.210024566195822, 48.789992594767554, 0.0 ], [ 9.210038397091695, 48.790013072130215, 0.0 ], [ 9.210313234685501, 48.789930919878017, 0.0 ], [ 9.210302694712643, 48.789916371497995, 0.0 ], [ 9.210346325787526, 48.789903252885701, 0.0 ], [ 9.210385063916219, 48.789891671897514, 0.0 ], [ 9.210394651262941, 48.789906222010508, 0.0 ], [ 9.210669483926086, 48.78982316967975, 0.0 ], [ 9.210656062983766, 48.7898031412604, 0.0 ], [ 9.210656878405471, 48.789802869997906, 0.0 ], [ 9.210723206871947, 48.789782605754468, 0.0 ], [ 9.210785729236717, 48.789763427522956, 0.0 ], [ 9.210830369761437, 48.789828900134815, 0.0 ], [ 9.210958143473752, 48.789792247071809, 0.0 ], [ 9.211007438898358, 48.789864275512755, 0.0 ], [ 9.210880483476071, 48.789901376749654, 0.0 ], [ 9.210884313271993, 48.789905955841775, 0.0 ], [ 9.210822197161107, 48.789924683764404, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000158f7", "Latitude": 48.79054, "Longitude": 9.19952, "X_coordina": 3514732.72, "Y_coordina": 5405915.67, "LOD": "LOD2", "Year_of_co": 1934, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 612.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 133.5, "Total_wall": 520.6, "Total_wa00": 0.0, "Total_outw": 703.8, "Total_shar": 282.0, "Total_roof": 183.1, "Gross_volu": 2375.4, "Is_Gross_v": "false", "Heated_vol": 2241.9, "Ridge_mean": 20.1, "Eaves_mean": 15.02, "Storey_num": 6, "Average_St": 3.2, "Number_of_": 10, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.367, "Heated_are": 612.8, "Mean_Uvalu": 0.6, "Specific_d": "15,8", "Specific_s": 48.6, "Total_Year": 39517.0, "January_He": 7204.0, "February_H": 5105.0, "March_Heat": 3273.0, "April_Heat": 826.0, "May_Heatin": 46.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 109.0, "October_He": 1615.0, "November_H": 4547.0, "December_H": 7086.0, "PV_potenti": 6.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199419186988935, 48.790602876022341, 0.0 ], [ 9.199393812917963, 48.790587632945268, 0.0 ], [ 9.199370074840425, 48.790573106419153, 0.0 ], [ 9.199365709501008, 48.79057050619182, 0.0 ], [ 9.199397189596446, 48.790546801775442, 0.0 ], [ 9.19946123524098, 48.790498581723902, 0.0 ], [ 9.199476839331917, 48.790486774700923, 0.0 ], [ 9.199528402217897, 48.790516809783604, 0.0 ], [ 9.19952690946414, 48.79051789145349, 0.0 ], [ 9.199593341603059, 48.790556713257338, 0.0 ], [ 9.199544219649058, 48.790593127528844, 0.0 ], [ 9.199495097624034, 48.790629541779296, 0.0 ], [ 9.199431532705136, 48.790593052967864, 0.0 ], [ 9.199419186988935, 48.790602876022341, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000158e6", "Latitude": 48.79067, "Longitude": 9.19931, "X_coordina": 3514716.97, "Y_coordina": 5405930.8, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 400.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 115.9, "Total_wall": 277.2, "Total_wa00": 0.0, "Total_outw": 446.0, "Total_shar": 308.4, "Total_roof": 115.9, "Gross_volu": 1364.7, "Is_Gross_v": "false", "Heated_vol": 1250.3, "Ridge_mean": 11.8, "Eaves_mean": 11.79, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 11, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.391, "Heated_are": 400.1, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 37.0, "Total_Year": 21123.0, "January_He": 3459.0, "February_H": 2527.0, "March_Heat": 1761.0, "April_Heat": 530.0, "May_Heatin": 27.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 852.0, "November_H": 2205.0, "December_H": 3358.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199285222760425, 48.790762902201358, 0.0 ], [ 9.199160679128765, 48.790690009764248, 0.0 ], [ 9.199246302561425, 48.7906261957271, 0.0 ], [ 9.199319146016659, 48.790668783387027, 0.0 ], [ 9.199370709351754, 48.790698908462147, 0.0 ], [ 9.199285222760425, 48.790762902201358, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00015868", "Latitude": 48.78976, "Longitude": 9.19484, "X_coordina": 3514388.49, "Y_coordina": 5405828.42, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3210, "PrimaryUsa": "sport location", "PrimaryU00": 3537.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 1645.8, "Total_wall": 582.1, "Total_wa00": 0.0, "Total_outw": 1361.9, "Total_shar": 520.7, "Total_roof": 2035.4, "Gross_volu": 12700.0, "Is_Gross_v": "false", "Heated_vol": 11054.2, "Ridge_mean": 11.9, "Eaves_mean": 11.93, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.346, "Heated_are": 3537.4, "Mean_Uvalu": 0.24, "Specific_d": "124,1", "Specific_s": 113.0, "Total_Year": 838886.00000000012, "January_He": 84760.0, "February_H": 67235.0, "March_Heat": 52748.0, "April_Heat": 25121.0, "May_Heatin": 4961.0, "June_Heati": 133, "July_Heati": 1, "August_Hea": 5, "September_": 5994.0, "October_He": 24637.0, "November_H": 54364.0, "December_H": 79870.0, "PV_potenti": 97.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194772944364782, 48.789558632027934, 0.0 ], [ 9.194799952053607, 48.789574502826902, 0.0 ], [ 9.194813657593262, 48.789564228346919, 0.0 ], [ 9.195184262071232, 48.78978130588991, 0.0 ], [ 9.195108813580308, 48.789837815864956, 0.0 ], [ 9.195050734182665, 48.78988125744501, 0.0 ], [ 9.195057453626772, 48.78996460526686, 0.0 ], [ 9.194949842407047, 48.79004481952505, 0.0 ], [ 9.194956935596446, 48.790049033926906, 0.0 ], [ 9.194951642964234, 48.790052909603176, 0.0 ], [ 9.194878530856444, 48.790010049862282, 0.0 ], [ 9.194413946401301, 48.789738186710501, 0.0 ], [ 9.194398803738588, 48.789728770293486, 0.0 ], [ 9.194404096379426, 48.789724894642376, 0.0 ], [ 9.194419510183261, 48.789734040830005, 0.0 ], [ 9.19464464192423, 48.789567032019256, 0.0 ], [ 9.194721313612874, 48.789510070658906, 0.0 ], [ 9.194786649905645, 48.789548357551141, 0.0 ], [ 9.194772944364782, 48.789558632027934, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001585f", "Latitude": 48.78979, "Longitude": 9.19568, "X_coordina": 3514450.67, "Y_coordina": 5405831.67, "LOD": "LOD2", "Year_of_co": 2013, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 9467.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1650.9, "Total_wall": 4361.4, "Total_wa00": 0.0, "Total_outw": 5870.1, "Total_shar": 0.0, "Total_roof": 1937.0, "Gross_volu": 31235.6, "Is_Gross_v": "false", "Heated_vol": 29584.6, "Ridge_mean": 22.0, "Eaves_mean": 15.94, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.263, "Heated_are": 9467.1, "Mean_Uvalu": 0.44, "Specific_d": "24,8", "Specific_s": 35.4, "Total_Year": 570277.0, "January_He": 76812.0, "February_H": 56543.0, "March_Heat": 39347.0, "April_Heat": 12231.0, "May_Heatin": 1008.0, "June_Heati": 34, "July_Heati": 5, "August_Hea": 10, "September_": 2538.0, "October_He": 21195.0, "November_H": 50571.0, "December_H": 74821.0, "PV_potenti": 99.68 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196006266491393, 48.789852208277033, 0.0 ], [ 9.196004096023074, 48.789854010443975, 0.0 ], [ 9.19604256262018, 48.789876695642128, 0.0 ], [ 9.196043645401934, 48.789875165097051, 0.0 ], [ 9.196067378688937, 48.789888793081872, 0.0 ], [ 9.1960648006454, 48.789890775791157, 0.0 ], [ 9.196085396816612, 48.789902610640915, 0.0 ], [ 9.196102992310045, 48.789912742048053, 0.0 ], [ 9.196105028437241, 48.789911389726186, 0.0 ], [ 9.196129442920228, 48.789925196385326, 0.0 ], [ 9.196126863825885, 48.789926909326908, 0.0 ], [ 9.196164372980085, 48.789948337183979, 0.0 ], [ 9.196166815981918, 48.789946624473394, 0.0 ], [ 9.196193007061995, 48.789962316488733, 0.0 ], [ 9.196172106326241, 48.789977099571047, 0.0 ], [ 9.196169651755172, 48.789975844821726, 0.0 ], [ 9.195953075747571, 48.790137356700328, 0.0 ], [ 9.195955668514976, 48.790139150760822, 0.0 ], [ 9.195933953879837, 48.79015465457347, 0.0 ], [ 9.195829739548678, 48.790093324085511, 0.0 ], [ 9.195713522396225, 48.790025089783676, 0.0 ], [ 9.195291077456144, 48.789776808456324, 0.0 ], [ 9.195186864689299, 48.789715477380462, 0.0 ], [ 9.195082788964953, 48.789654325824849, 0.0 ], [ 9.195319050742665, 48.789480372718252, 0.0 ], [ 9.1953161875948, 48.789479028720024, 0.0 ], [ 9.195337087677901, 48.789464065945495, 0.0 ], [ 9.195360550841608, 48.789478324000449, 0.0 ], [ 9.195358106089536, 48.78947958707888, 0.0 ], [ 9.195399295329253, 48.789502627568716, 0.0 ], [ 9.195402961759102, 48.789500553103693, 0.0 ], [ 9.195423966936403, 48.789512657149295, 0.0 ], [ 9.195422070040971, 48.789514818535679, 0.0 ], [ 9.195441574383954, 48.789525935965038, 0.0 ], [ 9.195458896386084, 48.78953579816443, 0.0 ], [ 9.195461342186171, 48.789534804853005, 0.0 ], [ 9.195485758406155, 48.789549151188247, 0.0 ], [ 9.195484402034614, 48.789550322498059, 0.0 ], [ 9.195520548324403, 48.789571393185049, 0.0 ], [ 9.195522041485756, 48.789570401489847, 0.0 ], [ 9.195547139944209, 48.789585196271766, 0.0 ], [ 9.195525427867119, 48.789601329470031, 0.0 ], [ 9.195523381604664, 48.789600074013578, 0.0 ], [ 9.195476021583703, 48.789635134710799, 0.0 ], [ 9.195478204636519, 48.789636569783156, 0.0 ], [ 9.195456763650499, 48.789652432737249, 0.0 ], [ 9.195454173370779, 48.78965126812659, 0.0 ], [ 9.195394328437024, 48.789695522190627, 0.0 ], [ 9.195401011244234, 48.789699197719933, 0.0 ], [ 9.195398430041635, 48.78970037110706, 0.0 ], [ 9.195425707742206, 48.789715611835426, 0.0 ], [ 9.195427471696252, 48.789714259987385, 0.0 ], [ 9.195447525025028, 48.789726545490879, 0.0 ], [ 9.195445895416592, 48.789727447493057, 0.0 ], [ 9.195470857490053, 48.789742152599061, 0.0 ], [ 9.19547234926025, 48.789740801212346, 0.0 ], [ 9.195491991191108, 48.789752278093715, 0.0 ], [ 9.19549022688814, 48.789753540019717, 0.0 ], [ 9.19551505254624, 48.789768155424021, 0.0 ], [ 9.195516408573543, 48.789766894190848, 0.0 ], [ 9.195535778340849, 48.789778371526793, 0.0 ], [ 9.195534694497494, 48.789779632298021, 0.0 ], [ 9.195558701882554, 48.789793799464157, 0.0 ], [ 9.195560465486301, 48.789792357691049, 0.0 ], [ 9.19557983422497, 48.789803565250409, 0.0 ], [ 9.195577798437478, 48.789805007486066, 0.0 ], [ 9.195603578887491, 48.789820160791358, 0.0 ], [ 9.195605342490872, 48.789818719017568, 0.0 ], [ 9.195623483974506, 48.789829299188781, 0.0 ], [ 9.195621720371276, 48.789830740962827, 0.0 ], [ 9.195647091872255, 48.78984571510577, 0.0 ], [ 9.195649399144294, 48.789844092560372, 0.0 ], [ 9.195667540995961, 48.789854762647607, 0.0 ], [ 9.195665642699579, 48.789856564345698, 0.0 ], [ 9.195692923712778, 48.789872614317453, 0.0 ], [ 9.195695638561572, 48.789870811231246, 0.0 ], [ 9.195714734826423, 48.789881929307185, 0.0 ], [ 9.195711747793384, 48.789883732856445, 0.0 ], [ 9.1957363003462, 48.789898078906035, 0.0 ], [ 9.195738743709949, 48.789896456127551, 0.0 ], [ 9.195757840693656, 48.789907754042339, 0.0 ], [ 9.19575594274832, 48.789909645664956, 0.0 ], [ 9.195781586863339, 48.789924709238264, 0.0 ], [ 9.1957841670189, 48.789923266073515, 0.0 ], [ 9.195802175284539, 48.789934565831942, 0.0 ], [ 9.195800001306532, 48.789935468764682, 0.0 ], [ 9.195825916232842, 48.789950172173114, 0.0 ], [ 9.195827680534256, 48.789948910242018, 0.0 ], [ 9.195834775533143, 48.789953574204979, 0.0 ], [ 9.195892312067878, 48.789910672695555, 0.0 ], [ 9.195890401525894, 48.789909327091159, 0.0 ], [ 9.195912930521564, 48.789893282358797, 0.0 ], [ 9.195915112197657, 48.789894357730645, 0.0 ], [ 9.195962877280342, 48.78985848685258, 0.0 ], [ 9.195960557061509, 48.789856782251988, 0.0 ], [ 9.195983488684123, 48.789839298042452, 0.0 ], [ 9.196006266491393, 48.789852208277033, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00015860", "Latitude": 48.79025, "Longitude": 9.19585, "X_coordina": 3514462.91, "Y_coordina": 5405883.46, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 25.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 32.1, "Total_wall": 56.7, "Total_wa00": 0.0, "Total_outw": 176.0, "Total_shar": 0.0, "Total_roof": 32.1, "Gross_volu": 88.7, "Is_Gross_v": "false", "Heated_vol": 81.0, "Ridge_mean": 2.7, "Eaves_mean": 2.74, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.424, "Heated_are": 25.9, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195860920459358, 48.79027212914481, 0.0 ], [ 9.195808810423683, 48.790310705074923, 0.0 ], [ 9.195751657896494, 48.790277530502308, 0.0 ], [ 9.195803904034904, 48.79023895436643, 0.0 ], [ 9.195860920459358, 48.79027212914481, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00015796", "Latitude": 48.78823, "Longitude": 9.20297, "X_coordina": 3514986.32, "Y_coordina": 5405659.41, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 860.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 231.9, "Total_wall": 565.1, "Total_wa00": 0.0, "Total_outw": 899.5, "Total_shar": 0.0, "Total_roof": 391.6, "Gross_volu": 2695.2, "Is_Gross_v": "false", "Heated_vol": 2687.7, "Ridge_mean": 15.0, "Eaves_mean": 8.71, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 11, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.442, "Heated_are": 860.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.8, "Total_Year": 50456.0, "January_He": 9050.0, "February_H": 6371.0, "March_Heat": 3939.0, "April_Heat": 810.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 99.0, "October_He": 1941.0, "November_H": 5734.0, "December_H": 8862.0, "PV_potenti": 18.33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202791247761425, 48.788179839819925, 0.0 ], [ 9.20291954613003, 48.788137889239458, 0.0 ], [ 9.203051590995344, 48.788316244868348, 0.0 ], [ 9.202922881843906, 48.788357656776419, 0.0 ], [ 9.202791247761425, 48.788179839819925, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000156d2", "Latitude": 48.79075, "Longitude": 9.20551, "X_coordina": 3515172.34, "Y_coordina": 5405940.76, "LOD": "LOD2", "Year_of_co": 1941, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 233.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 88.0, "Total_wall": 191.9, "Total_wa00": 0.0, "Total_outw": 352.6, "Total_shar": 124.0, "Total_roof": 146.6, "Gross_volu": 809.4, "Is_Gross_v": "false", "Heated_vol": 730.9, "Ridge_mean": 12.1, "Eaves_mean": 6.06, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 3, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.557, "Heated_are": 233.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 53.6, "Total_Year": 16250.0, "January_He": 3019.0, "February_H": 2153.0, "March_Heat": 1366.0, "April_Heat": 300.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 711.0, "November_H": 1989.0, "December_H": 2949.0, "PV_potenti": 6.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205466261226654, 48.790727490629784, 0.0 ], [ 9.20552369745517, 48.790728467221442, 0.0 ], [ 9.205519580566129, 48.790820106734316, 0.0 ], [ 9.205461326931218, 48.790818951751781, 0.0 ], [ 9.205402936837235, 48.790817707059574, 0.0 ], [ 9.205405366929327, 48.790746213449843, 0.0 ], [ 9.205403053324268, 48.790746217576512, 0.0 ], [ 9.205403925236213, 48.790726432825501, 0.0 ], [ 9.205466261226654, 48.790727490629784, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00015533", "Latitude": 48.78987, "Longitude": 9.20838, "X_coordina": 3515383.39, "Y_coordina": 5405843.69, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 740.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 204.5, "Total_wall": 475.8, "Total_wa00": 0.0, "Total_outw": 731.5, "Total_shar": 153.6, "Total_roof": 204.5, "Gross_volu": 1939.8, "Is_Gross_v": "false", "Heated_vol": 1939.8, "Ridge_mean": 9.5, "Eaves_mean": 9.48, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 9, "Number_o00": 18, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.456, "Heated_are": 740.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 31.8, "Total_Year": 35266.0, "January_He": 6231.0, "February_H": 4062.0, "March_Heat": 2145.0, "April_Heat": 280.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 23.0, "October_He": 919.0, "November_H": 3702.0, "December_H": 6167.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208409367446361, 48.789982310394656, 0.0 ], [ 9.208266076740568, 48.789986076645356, 0.0 ], [ 9.208254486047053, 48.789816141943881, 0.0 ], [ 9.208340481966866, 48.789812569299464, 0.0 ], [ 9.208340585298814, 48.78980465583286, 0.0 ], [ 9.208398151032215, 48.789804281903194, 0.0 ], [ 9.208409367446361, 48.789982310394656, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000153b8", "Latitude": 48.79111, "Longitude": 9.2092, "X_coordina": 3515443.26, "Y_coordina": 5405981.72, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 125.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.5, "Total_wall": 70.0, "Total_wa00": 0.0, "Total_outw": 138.4, "Total_shar": 230.3, "Total_roof": 69.1, "Gross_volu": 417.4, "Is_Gross_v": "false", "Heated_vol": 392.8, "Ridge_mean": 10.5, "Eaves_mean": 6.37, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.466, "Heated_are": 125.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.9, "Total_Year": 7259.0, "January_He": 1312.0, "February_H": 895.0, "March_Heat": 557.0, "April_Heat": 137.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 251.0, "November_H": 795.0, "December_H": 1300.0, "PV_potenti": 3.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209202553069058, 48.791103478695788, 0.0 ], [ 9.209190599077116, 48.791141628022487, 0.0 ], [ 9.209179315452662, 48.791177348192555, 0.0 ], [ 9.209101152891261, 48.791166969079022, 0.0 ], [ 9.209112299726112, 48.791131069317736, 0.0 ], [ 9.209124251906472, 48.791092470384307, 0.0 ], [ 9.209202553069058, 48.791103478695788, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000152d1", "Latitude": 48.7881, "Longitude": 9.1953, "X_coordina": 3514423.16, "Y_coordina": 5405643.48, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 747.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 180.2, "Total_wall": 491.8, "Total_wa00": 0.0, "Total_outw": 720.3, "Total_shar": 388.0, "Total_roof": 205.6, "Gross_volu": 2516.6, "Is_Gross_v": "false", "Heated_vol": 2336.4, "Ridge_mean": 15.3, "Eaves_mean": 11.43, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 9, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.365, "Heated_are": 747.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 36.2, "Total_Year": 38886.0, "January_He": 6738.0, "February_H": 4704.0, "March_Heat": 2850.0, "April_Heat": 517.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 1351.0, "November_H": 4230.0, "December_H": 6588.0, "PV_potenti": 10.27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195187363222855, 48.788124727270969, 0.0 ], [ 9.195140835823599, 48.788058352543352, 0.0 ], [ 9.195202002880592, 48.788039634675968, 0.0 ], [ 9.195269422573144, 48.788019017776655, 0.0 ], [ 9.195373160658546, 48.788169284097357, 0.0 ], [ 9.195308326820927, 48.788189986594723, 0.0 ], [ 9.195225415598109, 48.788216474818178, 0.0 ], [ 9.195224046349452, 48.788214318971782, 0.0 ], [ 9.195258979359105, 48.788203558828648, 0.0 ], [ 9.195201772793386, 48.78812065628118, 0.0 ], [ 9.195187363222855, 48.788124727270969, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000152d2", "Latitude": 48.78811, "Longitude": 9.19508, "X_coordina": 3514406.57, "Y_coordina": 5405645.35, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 166.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 91.9, "Total_wall": 185.2, "Total_wa00": 0.0, "Total_outw": 418.4, "Total_shar": 41.8, "Total_roof": 91.9, "Gross_volu": 427.0, "Is_Gross_v": "false", "Heated_vol": 427.0, "Ridge_mean": 4.6, "Eaves_mean": 4.65, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.864, "Heated_are": 166.7, "Mean_Uvalu": 0.46, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195059232657671, 48.788141400411305, 0.0 ], [ 9.194983251533573, 48.788200339161328, 0.0 ], [ 9.194925283681107, 48.78816671592925, 0.0 ], [ 9.195024207832454, 48.788093350578116, 0.0 ], [ 9.195103727236015, 48.788069565955311, 0.0 ], [ 9.195137390897749, 48.788117528147474, 0.0 ], [ 9.195059232657671, 48.788141400411305, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014c13", "Latitude": 48.79046, "Longitude": 9.20947, "X_coordina": 3515463.31, "Y_coordina": 5405909.51, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 696.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 181.5, "Total_wall": 481.3, "Total_wa00": 0.0, "Total_outw": 878.2, "Total_shar": 22.4, "Total_roof": 352.4, "Gross_volu": 2358.5, "Is_Gross_v": "false", "Heated_vol": 2177.0, "Ridge_mean": 17.7, "Eaves_mean": 9.66, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 11, "Number_o00": 18, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.454, "Heated_are": 696.6, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 43.0, "Total_Year": 41013.0, "January_He": 7430.0, "February_H": 5185.0, "March_Heat": 3140.0, "April_Heat": 607.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 74.0, "October_He": 1541.0, "November_H": 4688.0, "December_H": 7293.0, "PV_potenti": 14.31 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209309288243118, 48.79042490097757, 0.0 ], [ 9.209392206882395, 48.790401100326676, 0.0 ], [ 9.20942822898483, 48.790390783530313, 0.0 ], [ 9.209429724141328, 48.790390331193144, 0.0 ], [ 9.209534885254508, 48.790544179065598, 0.0 ], [ 9.20941581486518, 48.790579915482923, 0.0 ], [ 9.209309288243118, 48.79042490097757, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014afc", "Latitude": 48.79279, "Longitude": 9.2028, "X_coordina": 3514972.97, "Y_coordina": 5406167.28, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 459.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 121.4, "Total_wall": 321.5, "Total_wa00": 0.0, "Total_outw": 446.5, "Total_shar": 290.8, "Total_roof": 168.2, "Gross_volu": 1741.6, "Is_Gross_v": "false", "Heated_vol": 1620.2, "Ridge_mean": 16.4, "Eaves_mean": 11.89, "Storey_num": 5, "Average_St": 3.1, "Number_of_": 7, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.367, "Heated_are": 459.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 43.1, "Total_Year": 27103.0, "January_He": 4719.0, "February_H": 3453.0, "March_Heat": 2243.0, "April_Heat": 510.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 66.0, "October_He": 1127.0, "November_H": 3091.0, "December_H": 4597.0, "PV_potenti": 7.22 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20275248466756, 48.792745420248018, 0.0 ], [ 9.202864613958802, 48.792808528977709, 0.0 ], [ 9.202761755974148, 48.79288460563297, 0.0 ], [ 9.202651934185987, 48.79281996404243, 0.0 ], [ 9.20275248466756, 48.792745420248018, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014afd", "Latitude": 48.79284, "Longitude": 9.20274, "X_coordina": 3514968.31, "Y_coordina": 5406172.38, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 76.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 28.2, "Total_wall": 47.7, "Total_wa00": 0.0, "Total_outw": 47.7, "Total_shar": 186.7, "Total_roof": 38.8, "Gross_volu": 258.3, "Is_Gross_v": "false", "Heated_vol": 240.3, "Ridge_mean": 11.2, "Eaves_mean": 11.24, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.444, "Heated_are": 76.9, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202628323028211, 48.792837450765582, 5.499146553103003 ], [ 9.202651934185987, 48.79281996404243, 5.499146553103003 ], [ 9.202761755974148, 48.79288460563297, 5.499146553103003 ], [ 9.202738144824348, 48.792902092378398, 5.499146553103003 ], [ 9.202628323028211, 48.792837450765582, 5.499146553103003 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014758", "Latitude": 48.79471, "Longitude": 9.2023, "X_coordina": 3514935.75, "Y_coordina": 5406379.84, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1290.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 222.3, "Total_wall": 916.7, "Total_wa00": 0.0, "Total_outw": 1260.9, "Total_shar": 212.2, "Total_roof": 326.8, "Gross_volu": 4255.2, "Is_Gross_v": "false", "Heated_vol": 4032.9, "Ridge_mean": 21.8, "Eaves_mean": 16.57, "Storey_num": 7, "Average_St": 3.0, "Number_of_": 21, "Number_o00": 28, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.358, "Heated_are": 1290.5, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 66451.0, "January_He": 11315.0, "February_H": 8086.0, "March_Heat": 4998.0, "April_Heat": 929.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 92.0, "October_He": 2331.0, "November_H": 7187.0, "December_H": 11048.0, "PV_potenti": 12.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202244099548707, 48.794697295991419, 0.0 ], [ 9.202267985004761, 48.794680078641626, 0.0 ], [ 9.202265117399564, 48.794677745665908, 0.0 ], [ 9.202318583699572, 48.794638085380278, 0.0 ], [ 9.202416403202701, 48.794695644404875, 0.0 ], [ 9.202254378062866, 48.794816426648701, 0.0 ], [ 9.202101988530897, 48.794727130332596, 0.0 ], [ 9.202187072825733, 48.79466385464309, 0.0 ], [ 9.202244099548707, 48.794697295991419, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000146f3", "Latitude": 48.79507, "Longitude": 9.20981, "X_coordina": 3515487.18, "Y_coordina": 5406422.24, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 361.3, "SecondaryU": "retail", "Secondar00": 104.5, "BuildingTy": "MFH", "Footprint_": 130.6, "Total_wall": 228.8, "Total_wa00": 0.0, "Total_outw": 387.8, "Total_shar": 326.8, "Total_roof": 190.9, "Gross_volu": 1586.4, "Is_Gross_v": "false", "Heated_vol": 1455.7, "Ridge_mean": 14.9, "Eaves_mean": 9.36, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.364, "Heated_are": 465.8, "Mean_Uvalu": 0.48, "Specific_d": "28,7", "Specific_s": 40.3, "Total_Year": 32141.0, "January_He": 4572.0, "February_H": 3273.0, "March_Heat": 2051.0, "April_Heat": 421.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 1008.0, "November_H": 2945.0, "December_H": 4451.0, "PV_potenti": 8.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209785669348383, 48.795039991722092, 0.0 ], [ 9.209854447123959, 48.795050477390518, 0.0 ], [ 9.209815709063049, 48.795160974094316, 0.0 ], [ 9.209758912245888, 48.795151365816565, 0.0 ], [ 9.20974747107134, 48.795149408337238, 0.0 ], [ 9.209696939664902, 48.795140867699942, 0.0 ], [ 9.209677735192678, 48.79513766541988, 0.0 ], [ 9.209715665898155, 48.795029328397526, 0.0 ], [ 9.209785669348383, 48.795039991722092, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014655", "Latitude": 48.7886, "Longitude": 9.20986, "X_coordina": 3515492.57, "Y_coordina": 5405702.42, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 92.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.1, "Total_wall": 54.8, "Total_wa00": 0.0, "Total_outw": 135.6, "Total_shar": 193.4, "Total_roof": 64.1, "Gross_volu": 334.8, "Is_Gross_v": "false", "Heated_vol": 288.7, "Ridge_mean": 9.1, "Eaves_mean": 5.42, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.53, "Heated_are": 92.4, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 49.7, "Total_Year": 6058.0, "January_He": 1174.0, "February_H": 788.0, "March_Heat": 437.0, "April_Heat": 71.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 223.0, "November_H": 741.0, "December_H": 1151.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209866396765408, 48.788647625460605, 0.0 ], [ 9.209812377421539, 48.788649612288452, 0.0 ], [ 9.209763256517576, 48.788651410321343, 0.0 ], [ 9.209758673432669, 48.788596655165698, 0.0 ], [ 9.209807386017719, 48.788594857878628, 0.0 ], [ 9.209860860948835, 48.7885928720452, 0.0 ], [ 9.209866396765408, 48.788647625460605, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014610", "Latitude": 48.79148, "Longitude": 9.2098, "X_coordina": 3515487.46, "Y_coordina": 5406022.05, "LOD": "LOD2", "Year_of_co": 1948, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 286.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 103.9, "Total_wall": 237.2, "Total_wa00": 0.0, "Total_outw": 423.0, "Total_shar": 123.3, "Total_roof": 159.9, "Gross_volu": 923.1, "Is_Gross_v": "false", "Heated_vol": 894.3, "Ridge_mean": 11.5, "Eaves_mean": 5.4, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 4, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.552, "Heated_are": 286.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 51.5, "Total_Year": 19271.0, "January_He": 3560.0, "February_H": 2539.0, "March_Heat": 1599.0, "April_Heat": 350.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 51.0, "October_He": 824.0, "November_H": 2327.0, "December_H": 3475.0, "PV_potenti": 6.85 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.2096950354155, 48.791515961824594, 0.0 ], [ 9.209720836147939, 48.791436782067592, 0.0 ], [ 9.209778983356324, 48.791444859208646, 0.0 ], [ 9.209834543253978, 48.791452581340288, 0.0 ], [ 9.20980231165951, 48.791556142135704, 0.0 ], [ 9.209746208390674, 48.791548690749117, 0.0 ], [ 9.20967526237405, 48.791539288041292, 0.0 ], [ 9.209683187904499, 48.791514274848439, 0.0 ], [ 9.2096950354155, 48.791515961824594, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014611", "Latitude": 48.79146, "Longitude": 9.20958, "X_coordina": 3515471.62, "Y_coordina": 5406020.61, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 81.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 88.4, "Total_wall": 82.3, "Total_wa00": 0.0, "Total_outw": 299.8, "Total_shar": 0.0, "Total_roof": 88.4, "Gross_volu": 168.4, "Is_Gross_v": "false", "Heated_vol": 168.4, "Ridge_mean": 1.9, "Eaves_mean": 1.91, "Storey_num": 1, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.538, "Heated_are": 81.4, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209550954030881, 48.791559657192025, 0.0 ], [ 9.209478095945267, 48.791548639217183, 0.0 ], [ 9.209527050630417, 48.791408179408052, 0.0 ], [ 9.209600453282668, 48.791419286284665, 0.0 ], [ 9.209550954030881, 48.791559657192025, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014412", "Latitude": 48.79293, "Longitude": 9.20146, "X_coordina": 3514873.99, "Y_coordina": 5406181.98, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 843.0, "SecondaryU": "retail", "Secondar00": 148.1, "BuildingTy": "GMH", "Footprint_": 185.2, "Total_wall": 855.3, "Total_wa00": 0.0, "Total_outw": 1199.8, "Total_shar": 81.4, "Total_roof": 248.0, "Gross_volu": 3282.4, "Is_Gross_v": "false", "Heated_vol": 3097.2, "Ridge_mean": 20.9, "Eaves_mean": 14.67, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 16, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.408, "Heated_are": 991.1, "Mean_Uvalu": 0.45, "Specific_d": "24,4", "Specific_s": 36.7, "Total_Year": 60567.0, "January_He": 9160.0, "February_H": 6337.0, "March_Heat": 3763.0, "April_Heat": 698.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 75.0, "October_He": 1731.0, "November_H": 5621.0, "December_H": 8991.0, "PV_potenti": 12.59 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201411459206691, 48.792875375079205, 0.0 ], [ 9.201412409028578, 48.792874654029305, 0.0 ], [ 9.201536008621654, 48.792947545658286, 0.0 ], [ 9.201471280637433, 48.792995588188852, 0.0 ], [ 9.201410623671448, 48.793040656084329, 0.0 ], [ 9.201342274967891, 48.79300022007083, 0.0 ], [ 9.201287159411505, 48.792967584238333, 0.0 ], [ 9.201348089680524, 48.792922785700149, 0.0 ], [ 9.201357453255271, 48.792915935135682, 0.0 ], [ 9.201329213568938, 48.792899258723985, 0.0 ], [ 9.201383354545786, 48.79285842867376, 0.0 ], [ 9.201411459206691, 48.792875375079205, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000142a9", "Latitude": 48.79148, "Longitude": 9.20383, "X_coordina": 3515049.01, "Y_coordina": 5406020.88, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 101.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.8, "Total_wall": 63.8, "Total_wa00": 0.0, "Total_outw": 141.6, "Total_shar": 203.3, "Total_roof": 60.2, "Gross_volu": 363.5, "Is_Gross_v": "false", "Heated_vol": 316.7, "Ridge_mean": 9.3, "Eaves_mean": 6.15, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.503, "Heated_are": 101.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 47.1, "Total_Year": 6382.0, "January_He": 1204.0, "February_H": 826.0, "March_Heat": 471.0, "April_Heat": 77.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 238.0, "November_H": 768.0, "December_H": 1181.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20383296298639, 48.791529454386527, 0.0 ], [ 9.20378013276444, 48.791523433079917, 0.0 ], [ 9.203729072901906, 48.791517678387926, 0.0 ], [ 9.203742737023742, 48.791463879897648, 0.0 ], [ 9.20379502315742, 48.791469992107942, 0.0 ], [ 9.20379529535019, 48.791469991626244, 0.0 ], [ 9.203846356264641, 48.791476016057892, 0.0 ], [ 9.20383296298639, 48.791529454386527, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001425b", "Latitude": 48.79295, "Longitude": 9.21444, "X_coordina": 3515827.67, "Y_coordina": 5406186.86, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 323.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 163.4, "Total_wall": 157.0, "Total_wa00": 0.0, "Total_outw": 417.1, "Total_shar": 0.0, "Total_roof": 222.6, "Gross_volu": 759.9, "Is_Gross_v": "false", "Heated_vol": 759.9, "Ridge_mean": 6.4, "Eaves_mean": 6.44, "Storey_num": 3, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.715, "Heated_are": 323.6, "Mean_Uvalu": 0.23, "Specific_d": "24,8", "Specific_s": 33.9, "Total_Year": 18990.0, "January_He": 2386.0, "February_H": 1824.0, "March_Heat": 1369.0, "April_Heat": 541.0, "May_Heatin": 65.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 1, "September_": 124.0, "October_He": 738.0, "November_H": 1599.0, "December_H": 2305.0, "PV_potenti": 8.99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214383632174156, 48.793058331211178, 0.0 ], [ 9.214281839217826, 48.792997012929554, 0.0 ], [ 9.214305719745386, 48.792979793088435, 0.0 ], [ 9.214315110288158, 48.792979685689694, 0.0 ], [ 9.214311253282114, 48.792936889241197, 0.0 ], [ 9.214302247687632, 48.792931510584616, 0.0 ], [ 9.214370766849697, 48.79288174524055, 0.0 ], [ 9.214500940600105, 48.792959916220582, 0.0 ], [ 9.214437033548235, 48.793006076110245, 0.0 ], [ 9.214432666838295, 48.793003386533591, 0.0 ], [ 9.214417334618274, 48.793014475681836, 0.0 ], [ 9.21443193453764, 48.793023171085522, 0.0 ], [ 9.214383632174156, 48.793058331211178, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00014038", "Latitude": 48.78805, "Longitude": 9.19858, "X_coordina": 3514664.34, "Y_coordina": 5405639.18, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 907.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 193.6, "Total_wall": 582.7, "Total_wa00": 0.0, "Total_outw": 805.6, "Total_shar": 300.9, "Total_roof": 259.3, "Gross_volu": 2866.0, "Is_Gross_v": "false", "Heated_vol": 2836.7, "Ridge_mean": 18.5, "Eaves_mean": 12.31, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 15, "Number_o00": 29, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.364, "Heated_are": 907.8, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 34.6, "Total_Year": 45832.0, "January_He": 7721.0, "February_H": 5493.0, "March_Heat": 3448.0, "April_Heat": 729.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 65.0, "October_He": 1557.0, "November_H": 4859.0, "December_H": 7562.0, "PV_potenti": 12.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198530651493714, 48.788160916296533, 0.0 ], [ 9.198528492185265, 48.788165506125672, 0.0 ], [ 9.198451020455973, 48.788156017829699, 0.0 ], [ 9.198463337308734, 48.788104470347633, 0.0 ], [ 9.198512501251631, 48.787975614927475, 0.0 ], [ 9.198617354950166, 48.787992339774391, 0.0 ], [ 9.198599748270537, 48.78804830265625, 0.0 ], [ 9.198627246044261, 48.788050323473932, 0.0 ], [ 9.198607883350466, 48.788109616560654, 0.0 ], [ 9.198587849754388, 48.788171338739225, 0.0 ], [ 9.198585536266629, 48.788171342728852, 0.0 ], [ 9.198585249898244, 48.788167746276429, 0.0 ], [ 9.198530651493714, 48.788160916296533, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013ee2", "Latitude": 48.78887, "Longitude": 9.21305, "X_coordina": 3515727.35, "Y_coordina": 5405733.2, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 90.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.0, "Total_wall": 97.6, "Total_wa00": 0.0, "Total_outw": 201.1, "Total_shar": 106.9, "Total_roof": 59.7, "Gross_volu": 325.6, "Is_Gross_v": "false", "Heated_vol": 283.6, "Ridge_mean": 9.7, "Eaves_mean": 6.31, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.669, "Heated_are": 90.8, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 62.8, "Total_Year": 7141.0, "January_He": 1397.0, "February_H": 978.0, "March_Heat": 594.0, "April_Heat": 123.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 19.0, "October_He": 307.0, "November_H": 913.0, "December_H": 1368.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212949406383613, 48.788912635987792, 0.0 ], [ 9.212953165772571, 48.788868386601422, 0.0 ], [ 9.213012919240473, 48.788870704030394, 0.0 ], [ 9.213068181005912, 48.788872849891533, 0.0 ], [ 9.213064424382548, 48.788917728742035, 0.0 ], [ 9.212949406383613, 48.788912635987792, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013e79", "Latitude": 48.79548, "Longitude": 9.20967, "X_coordina": 3515476.64, "Y_coordina": 5406466.9, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 284.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 81.0, "Total_wall": 331.5, "Total_wa00": 0.0, "Total_outw": 507.7, "Total_shar": 60.5, "Total_roof": 119.9, "Gross_volu": 970.6, "Is_Gross_v": "false", "Heated_vol": 889.6, "Ridge_mean": 14.8, "Eaves_mean": 9.13, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 4, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.579, "Heated_are": 284.7, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 49.9, "Total_Year": 18705.0, "January_He": 3547.0, "February_H": 2410.0, "March_Heat": 1451.0, "April_Heat": 325.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 708.0, "November_H": 2189.0, "December_H": 3509.0, "PV_potenti": 5.19 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209573700239492, 48.795452677130392, 0.0 ], [ 9.20963839344817, 48.795462720742471, 0.0 ], [ 9.209704312396472, 48.795472941933298, 0.0 ], [ 9.20967996480103, 48.795542047548253, 0.0 ], [ 9.209615953142606, 48.795532272489716, 0.0 ], [ 9.209605330029248, 48.79553067320154, 0.0 ], [ 9.209544451114143, 48.795521431942582, 0.0 ], [ 9.209560183909707, 48.795475362460138, 0.0 ], [ 9.209568252584692, 48.795451877732141, 0.0 ], [ 9.209573700239492, 48.795452677130392, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013e7a", "Latitude": 48.79544, "Longitude": 9.20951, "X_coordina": 3515465.22, "Y_coordina": 5406462.74, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 115.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 92.3, "Total_wall": 113.0, "Total_wa00": 0.0, "Total_outw": 276.4, "Total_shar": 112.0, "Total_roof": 99.3, "Gross_volu": 386.0, "Is_Gross_v": "false", "Heated_vol": 360.7, "Ridge_mean": 5.3, "Eaves_mean": 2.76, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.81, "Heated_are": 115.4, "Mean_Uvalu": 0.49, "Specific_d": "32,9", "Specific_s": 25.3, "Total_Year": 6719.0, "January_He": 906.0, "February_H": 516.0, "March_Heat": 187.0, "April_Heat": 14.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 33.0, "November_H": 391.0, "December_H": 879.0, "PV_potenti": 4.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209520414407132, 48.795469140174035, 0.0 ], [ 9.209508172438772, 48.795503693086857, 0.0 ], [ 9.209407116871304, 48.795488499962495, 0.0 ], [ 9.2093617643635, 48.795481658308724, 0.0 ], [ 9.209382996874393, 48.795416155365928, 0.0 ], [ 9.209430802621014, 48.795423801861894, 0.0 ], [ 9.209511023575365, 48.795436604935837, 0.0 ], [ 9.209575852858078, 48.795446648335492, 0.0 ], [ 9.209573700239492, 48.795452677130392, 0.0 ], [ 9.209568252584692, 48.795451877732141, 0.0 ], [ 9.209560183909707, 48.795475362460138, 0.0 ], [ 9.209520414407132, 48.795469140174035, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013d78", "Latitude": 48.79115, "Longitude": 9.21369, "X_coordina": 3515773.76, "Y_coordina": 5405986.73, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 627.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 158.7, "Total_wall": 319.0, "Total_wa00": 0.0, "Total_outw": 491.2, "Total_shar": 374.6, "Total_roof": 210.1, "Gross_volu": 2119.9, "Is_Gross_v": "false", "Heated_vol": 1961.2, "Ridge_mean": 15.8, "Eaves_mean": 10.68, "Storey_num": 5, "Average_St": 3.0, "Number_of_": 8, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.339, "Heated_are": 627.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 34.9, "Total_Year": 31840.0, "January_He": 5385.0, "February_H": 3857.0, "March_Heat": 2368.0, "April_Heat": 418.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 1121.0, "November_H": 3455.0, "December_H": 5246.0, "PV_potenti": 9.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213541217367501, 48.791210977262359, 0.0 ], [ 9.213613406126079, 48.79109628070055, 0.0 ], [ 9.213758692753727, 48.791113186528605, 0.0 ], [ 9.213674882167004, 48.79124723832151, 0.0 ], [ 9.213541217367501, 48.791210977262359, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013c80", "Latitude": 48.79558, "Longitude": 9.20913, "X_coordina": 3515437.04, "Y_coordina": 5406478.78, "LOD": "LOD2", "Year_of_co": 1968, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 244.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 96.1, "Total_wall": 280.1, "Total_wa00": 0.0, "Total_outw": 489.9, "Total_shar": 0.0, "Total_roof": 139.0, "Gross_volu": 808.5, "Is_Gross_v": "false", "Heated_vol": 763.2, "Ridge_mean": 10.5, "Eaves_mean": 6.32, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.659, "Heated_are": 244.2, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 54.8, "Total_Year": 17257.0, "January_He": 3275.0, "February_H": 2273.0, "March_Heat": 1425.0, "April_Heat": 354.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 705.0, "November_H": 2059.0, "December_H": 3231.0, "PV_potenti": 6.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209154090378316, 48.79565190124206, 0.0 ], [ 9.208992697865382, 48.795626925732243, 0.0 ], [ 9.20900480821871, 48.795593362272797, 0.0 ], [ 9.209017726608517, 48.795557729103798, 0.0 ], [ 9.209178847818485, 48.795582974842269, 0.0 ], [ 9.209165930657802, 48.795618877797565, 0.0 ], [ 9.209154090378316, 48.79565190124206, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013bd6", "Latitude": 48.79207, "Longitude": 9.19827, "X_coordina": 3514640.45, "Y_coordina": 5406085.39, "LOD": "LOD2", "Year_of_co": 1967, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1131, "PrimaryUsa": "residential", "PrimaryU00": 299.9, "SecondaryU": "industry", "Secondar00": 119.4, "BuildingTy": "RH", "Footprint_": 149.3, "Total_wall": 247.4, "Total_wa00": 0.0, "Total_outw": 412.0, "Total_shar": 288.0, "Total_roof": 173.9, "Gross_volu": 1317.3, "Is_Gross_v": "false", "Heated_vol": 1310.3, "Ridge_mean": 10.0, "Eaves_mean": 7.38, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 5, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.434, "Heated_are": 419.3, "Mean_Uvalu": 0.5, "Specific_d": "20,7", "Specific_s": 32.6, "Total_Year": 22362.0, "January_He": 3621.0, "February_H": 2439.0, "March_Heat": 1339.0, "April_Heat": 199.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 13.0, "October_He": 474.0, "November_H": 2084.0, "December_H": 3515.0, "PV_potenti": 9.14 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198320293604459, 48.792141028653361, 0.0 ], [ 9.198283516575113, 48.792167889215399, 0.0 ], [ 9.198097586919683, 48.79205958150915, 0.0 ], [ 9.198100165347824, 48.792057688678064, 0.0 ], [ 9.198133819931728, 48.792032811865546, 0.0 ], [ 9.198171273890617, 48.792005050949747, 0.0 ], [ 9.198270994582131, 48.792064049024091, 0.0 ], [ 9.198275349010634, 48.79206386167953, 0.0 ], [ 9.198278350254116, 48.792065654983872, 0.0 ], [ 9.198338921687926, 48.792102059654368, 0.0 ], [ 9.198342179890911, 48.792099985799879, 0.0 ], [ 9.198361684462002, 48.792110743035408, 0.0 ], [ 9.198320293604459, 48.792141028653361, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013bd7", "Latitude": 48.79199, "Longitude": 9.1983, "X_coordina": 3514642.12, "Y_coordina": 5406077.34, "LOD": "LOD2", "Year_of_co": 1967, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 120.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 65.4, "Total_wall": 75.1, "Total_wa00": 0.0, "Total_outw": 177.7, "Total_shar": 118.4, "Total_roof": 65.4, "Gross_volu": 246.3, "Is_Gross_v": "false", "Heated_vol": 246.3, "Ridge_mean": 3.8, "Eaves_mean": 3.77, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.836, "Heated_are": 120.8, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198181722969309, 48.791997299538238, 0.0 ], [ 9.198219041131837, 48.791969628764036, 0.0 ], [ 9.198228539991213, 48.791962508449018, 0.0 ], [ 9.198332895792074, 48.792023476810421, 0.0 ], [ 9.198278350254116, 48.792065654983872, 0.0 ], [ 9.198275349010634, 48.79206386167953, 0.0 ], [ 9.198270994582131, 48.792064049024091, 0.0 ], [ 9.198171273890617, 48.792005050949747, 0.0 ], [ 9.198181722969309, 48.791997299538238, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013bd8", "Latitude": 48.79219, "Longitude": 9.19849, "X_coordina": 3514656.32, "Y_coordina": 5406099.39, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 583.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 207.4, "Total_wall": 429.8, "Total_wa00": 0.0, "Total_outw": 724.4, "Total_shar": 149.0, "Total_roof": 238.4, "Gross_volu": 1900.6, "Is_Gross_v": "false", "Heated_vol": 1824.7, "Ridge_mean": 10.4, "Eaves_mean": 7.93, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.471, "Heated_are": 583.9, "Mean_Uvalu": 0.52, "Specific_d": "32,9", "Specific_s": 11.3, "Total_Year": 25808.0, "January_He": 2290.0, "February_H": 1090.0, "March_Heat": 292.0, "April_Heat": 13.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 34.0, "November_H": 709.0, "December_H": 2193.0, "PV_potenti": 12.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198608732855019, 48.792255903516761, 0.0 ], [ 9.198587971527422, 48.792271586026793, 0.0 ], [ 9.198569517121429, 48.792285556006888, 0.0 ], [ 9.198533015510494, 48.792313225485287, 0.0 ], [ 9.198283516575113, 48.792167889215399, 0.0 ], [ 9.198320293604459, 48.792141028653361, 0.0 ], [ 9.198361684462002, 48.792110743035408, 0.0 ], [ 9.198608732855019, 48.792255903516761, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000136ba", "Latitude": 48.78826, "Longitude": 9.20982, "X_coordina": 3515490.01, "Y_coordina": 5405664.79, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 157.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 60.0, "Total_wall": 100.4, "Total_wa00": 0.0, "Total_outw": 191.3, "Total_shar": 200.9, "Total_roof": 93.6, "Gross_volu": 539.6, "Is_Gross_v": "false", "Heated_vol": 491.2, "Ridge_mean": 11.2, "Eaves_mean": 6.64, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.495, "Heated_are": 157.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.1, "Total_Year": 9895.0, "January_He": 1764.0, "February_H": 1255.0, "March_Heat": 846.0, "April_Heat": 244.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 31.0, "October_He": 397.0, "November_H": 1114.0, "December_H": 1740.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20983766093017, 48.78825093466336, 0.0 ], [ 9.209836589484627, 48.788287715391306, 0.0 ], [ 9.209835763218924, 48.788318021169005, 0.0 ], [ 9.209714774780018, 48.788316712858354, 0.0 ], [ 9.209715178921686, 48.788315722962174, 0.0 ], [ 9.209726890029843, 48.788284857820742, 0.0 ], [ 9.209740215812682, 48.788249583477949, 0.0 ], [ 9.20983766093017, 48.78825093466336, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000135d0", "Latitude": 48.78848, "Longitude": 9.21024, "X_coordina": 3515521.02, "Y_coordina": 5405688.64, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 92.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 45.3, "Total_wall": 56.7, "Total_wa00": 0.0, "Total_outw": 136.5, "Total_shar": 197.0, "Total_roof": 61.2, "Gross_volu": 335.3, "Is_Gross_v": "false", "Heated_vol": 290.0, "Ridge_mean": 9.1, "Eaves_mean": 5.69, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.523, "Heated_are": 92.8, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 49.3, "Total_Year": 6043.0, "January_He": 1169.0, "February_H": 784.0, "March_Heat": 433.0, "April_Heat": 68.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 220.0, "November_H": 741.0, "December_H": 1147.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210196491537152, 48.788470593223408, 0.0 ], [ 9.210248741150799, 48.788468519522795, 0.0 ], [ 9.210252504845078, 48.788522466843347, 0.0 ], [ 9.210201343882597, 48.788524538558569, 0.0 ], [ 9.210150726893859, 48.788526519334738, 0.0 ], [ 9.210149728841566, 48.788515640394039, 0.0 ], [ 9.210145874602418, 48.788472573997403, 0.0 ], [ 9.210196491537152, 48.788470593223408, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000135a3", "Latitude": 48.78848, "Longitude": 9.21156, "X_coordina": 3515618.05, "Y_coordina": 5405689.18, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 138.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 47.1, "Total_wall": 93.2, "Total_wa00": 0.0, "Total_outw": 177.0, "Total_shar": 240.6, "Total_roof": 64.8, "Gross_volu": 479.0, "Is_Gross_v": "false", "Heated_vol": 431.9, "Ridge_mean": 12.0, "Eaves_mean": 8.38, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.454, "Heated_are": 138.2, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 44.6, "Total_Year": 8353.0, "January_He": 1516.0, "February_H": 1066.0, "March_Heat": 649.0, "April_Heat": 125.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 332.0, "November_H": 978.0, "December_H": 1479.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211575915710483, 48.788476160308036, 0.0 ], [ 9.211567572363622, 48.788530939141232, 0.0 ], [ 9.211514754578879, 48.788527349293169, 0.0 ], [ 9.211463434151344, 48.788523846595083, 0.0 ], [ 9.211471913698546, 48.788469067519287, 0.0 ], [ 9.211522961894392, 48.788472570713651, 0.0 ], [ 9.211575915710483, 48.788476160308036, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001351b", "Latitude": 48.78866, "Longitude": 9.20661, "X_coordina": 3515253.7, "Y_coordina": 5405708.11, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3080, "PrimaryUsa": "hall", "PrimaryU00": 98.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 52.2, "Total_wall": 95.2, "Total_wa00": 0.0, "Total_outw": 216.3, "Total_shar": 161.6, "Total_roof": 71.1, "Gross_volu": 358.8, "Is_Gross_v": "false", "Heated_vol": 306.6, "Ridge_mean": 9.4, "Eaves_mean": 5.07, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.665, "Heated_are": 98.1, "Mean_Uvalu": 0.54, "Specific_d": "non calculated", "Specific_s": 84.0, "Total_Year": 8236.0, "January_He": 1838.0, "February_H": 1336.0, "March_Heat": 938.0, "April_Heat": 301.0, "May_Heatin": 29.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 87.0, "October_He": 604.0, "November_H": 1284.0, "December_H": 1818.0, "PV_potenti": 1.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206568901176906, 48.788637581169439, 0.0 ], [ 9.206569189963542, 48.788641627215675, 0.0 ], [ 9.206612732077421, 48.788640020400834, 0.0 ], [ 9.206614011513578, 48.788653326805587, 0.0 ], [ 9.206619834444952, 48.788712576043316, 0.0 ], [ 9.20661983850599, 48.788713565196169, 0.0 ], [ 9.206618205808221, 48.788713658049211, 0.0 ], [ 9.206573710639343, 48.788715176652062, 0.0 ], [ 9.206573715806783, 48.788716435573868, 0.0 ], [ 9.20655575465276, 48.788717097256921, 0.0 ], [ 9.206546107101406, 48.788720711506841, 0.0 ], [ 9.20654120826889, 48.788720810216795, 0.0 ], [ 9.20653508463595, 48.788720911123185, 0.0 ], [ 9.206525955237895, 48.788718139863043, 0.0 ], [ 9.206508538069329, 48.788718710639486, 0.0 ], [ 9.206504283088394, 48.788676723925342, 0.0 ], [ 9.206552859782564, 48.78867492825767, 0.0 ], [ 9.206565514196313, 48.78867445594139, 0.0 ], [ 9.206562505745813, 48.788637772488485, 0.0 ], [ 9.206568901176906, 48.788637581169439, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001350b", "Latitude": 48.78809, "Longitude": 9.2044, "X_coordina": 3515091.42, "Y_coordina": 5405644.05, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3080, "PrimaryUsa": "hall", "PrimaryU00": 109.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 62.7, "Total_wall": 155.1, "Total_wa00": 0.0, "Total_outw": 378.1, "Total_shar": 0.0, "Total_roof": 124.9, "Gross_volu": 401.7, "Is_Gross_v": "false", "Heated_vol": 341.0, "Ridge_mean": 8.5, "Eaves_mean": 4.26, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.944, "Heated_are": 109.1, "Mean_Uvalu": 0.45, "Specific_d": "non calculated", "Specific_s": 91.2, "Total_Year": 9956.0, "January_He": 2216.0, "February_H": 1597.0, "March_Heat": 1132.0, "April_Heat": 414.0, "May_Heatin": 52.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 114.0, "October_He": 709.0, "November_H": 1520.0, "December_H": 2200.0, "PV_potenti": 2.84 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204383193643352, 48.788142135045319, 0.0 ], [ 9.204383461435906, 48.78814105548615, 0.0 ], [ 9.204315116363537, 48.788133982872488, 0.0 ], [ 9.204314852220184, 48.788135961661609, 0.0 ], [ 9.204267608368458, 48.788130739976644, 0.0 ], [ 9.204281233412342, 48.788067679323191, 0.0 ], [ 9.204307509190912, 48.788070330418869, 0.0 ], [ 9.204342361751888, 48.788073775602712, 0.0 ], [ 9.204341426301598, 48.788078003674599, 0.0 ], [ 9.204336340785995, 48.788099144758192, 0.0 ], [ 9.204417206209966, 48.788106285058781, 0.0 ], [ 9.204434903767403, 48.788107782344703, 0.0 ], [ 9.204427167767344, 48.788146463250733, 0.0 ], [ 9.204383193643352, 48.788142135045319, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000133b5", "Latitude": 48.78857, "Longitude": 9.20167, "X_coordina": 3514890.98, "Y_coordina": 5405697.69, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 2095.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 302.5, "Total_wall": 1483.1, "Total_wa00": 0.0, "Total_outw": 1935.6, "Total_shar": 619.1, "Total_roof": 302.5, "Gross_volu": 6850.4, "Is_Gross_v": "false", "Heated_vol": 6547.9, "Ridge_mean": 24.1, "Eaves_mean": 24.12, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 39, "Number_o00": 65, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.315, "Heated_are": 2095.3, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 33.9, "Total_Year": 104128.0, "January_He": 16445.0, "February_H": 12303.0, "March_Heat": 8627.0, "April_Heat": 2595.0, "May_Heatin": 106.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 264.0, "October_He": 4016.0, "November_H": 10659.0, "December_H": 15924.0, "PV_potenti": 14.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201533646204727, 48.788653607217441, 0.0 ], [ 9.201531061958041, 48.788653971434634, 0.0 ], [ 9.201526293448872, 48.788652630924943, 0.0 ], [ 9.201524239513954, 48.78864948719162, 0.0 ], [ 9.201524912396019, 48.788647597617434, 0.0 ], [ 9.201522794366392, 48.788628447586625, 0.0 ], [ 9.201524687005485, 48.788625296946798, 0.0 ], [ 9.201529445069243, 48.788624029688989, 0.0 ], [ 9.20153080631648, 48.788624117230377, 0.0 ], [ 9.201571629689045, 48.788623236467316, 0.0 ], [ 9.201557916189056, 48.788461218051552, 0.0 ], [ 9.201684461705673, 48.788456860003095, 0.0 ], [ 9.201693453675343, 48.788561245613799, 0.0 ], [ 9.201698739427746, 48.788623733292802, 0.0 ], [ 9.201701021003416, 48.788649717231294, 0.0 ], [ 9.201702879538264, 48.788672015041001, 0.0 ], [ 9.20172410579314, 48.788671078623828, 0.0 ], [ 9.20172868447696, 48.78872691318891, 0.0 ], [ 9.201579957219153, 48.788731669811035, 0.0 ], [ 9.201573785195253, 48.788651738491176, 0.0 ], [ 9.201533646204727, 48.788653607217441, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001320c", "Latitude": 48.7918, "Longitude": 9.20375, "X_coordina": 3515042.58, "Y_coordina": 5406056.77, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 102.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.3, "Total_wall": 63.8, "Total_wa00": 0.0, "Total_outw": 145.1, "Total_shar": 212.0, "Total_roof": 61.8, "Gross_volu": 366.1, "Is_Gross_v": "false", "Heated_vol": 318.8, "Ridge_mean": 9.4, "Eaves_mean": 5.94, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.505, "Heated_are": 102.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 45.9, "Total_Year": 6296.0, "January_He": 1188.0, "February_H": 809.0, "March_Heat": 455.0, "April_Heat": 71.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 228.0, "November_H": 753.0, "December_H": 1167.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203640823806579, 48.791839671050305, 0.0 ], [ 9.203641359462331, 48.791837511936677, 0.0 ], [ 9.203644491157705, 48.791837866093076, 0.0 ], [ 9.203658029184783, 48.791786495776051, 0.0 ], [ 9.203708681384192, 48.791792341144017, 0.0 ], [ 9.203762192730382, 48.791798451201551, 0.0 ], [ 9.203748787262835, 48.791848922060176, 0.0 ], [ 9.203748386252588, 48.791850721241673, 0.0 ], [ 9.203748122067935, 48.791852700028279, 0.0 ], [ 9.203694336650953, 48.791846140831048, 0.0 ], [ 9.203640823806579, 48.791839671050305, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013193", "Latitude": 48.79382, "Longitude": 9.2, "X_coordina": 3514766.64, "Y_coordina": 5406280.79, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 362.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 221.0, "Total_wall": 222.4, "Total_wa00": 0.0, "Total_outw": 481.9, "Total_shar": 230.8, "Total_roof": 221.0, "Gross_volu": 1355.1, "Is_Gross_v": "false", "Heated_vol": 1134.1, "Ridge_mean": 6.1, "Eaves_mean": 6.13, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.522, "Heated_are": 362.9, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 11.1, "Total_Year": 15960.0, "January_He": 1356.0, "February_H": 719.0, "March_Heat": 210.0, "April_Heat": 10.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 22.0, "November_H": 441.0, "December_H": 1277.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200104740776029, 48.79379658215241, 0.0 ], [ 9.200011785304453, 48.793865894864439, 0.0 ], [ 9.199911092066124, 48.793940346576811, 0.0 ], [ 9.19990552827343, 48.793944492719405, 0.0 ], [ 9.199803484977007, 48.793884690795913, 0.0 ], [ 9.199835239138643, 48.793860985798162, 0.0 ], [ 9.199936881833885, 48.793785723190453, 0.0 ], [ 9.20000269718641, 48.793736690480742, 0.0 ], [ 9.200104740776029, 48.79379658215241, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001310b", "Latitude": 48.78877, "Longitude": 9.19631, "X_coordina": 3514497.18, "Y_coordina": 5405718.01, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 778.2, "SecondaryU": "retail", "Secondar00": 158.4, "BuildingTy": "GMH", "Footprint_": 197.9, "Total_wall": 559.9, "Total_wa00": 0.0, "Total_outw": 804.8, "Total_shar": 379.3, "Total_roof": 228.8, "Gross_volu": 3056.2, "Is_Gross_v": "false", "Heated_vol": 2926.9, "Ridge_mean": 17.2, "Eaves_mean": 12.72, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 15, "Number_o00": 26, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.331, "Heated_are": 936.6, "Mean_Uvalu": 0.48, "Specific_d": "25,5", "Specific_s": 37.2, "Total_Year": 58742.0, "January_He": 8449.0, "February_H": 6060.0, "March_Heat": 3887.0, "April_Heat": 856.0, "May_Heatin": 27.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 104.0, "October_He": 1885.0, "November_H": 5386.0, "December_H": 8201.0, "PV_potenti": 11.11 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196201310639946, 48.788845810467969, 0.0 ], [ 9.196220747926402, 48.788839752464725, 0.0 ], [ 9.19619816487274, 48.788806878889098, 0.0 ], [ 9.196149165227451, 48.788735203293243, 0.0 ], [ 9.196211693619388, 48.788716482573335, 0.0 ], [ 9.1962119654468, 48.788716392186537, 0.0 ], [ 9.196289718217939, 48.788693149300045, 0.0 ], [ 9.196384702243792, 48.788830930227803, 0.0 ], [ 9.196310755948184, 48.788853177528672, 0.0 ], [ 9.196223760078139, 48.78887931373594, 0.0 ], [ 9.196201310639946, 48.788845810467969, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001310c", "Latitude": 48.78883, "Longitude": 9.19629, "X_coordina": 3514495.78, "Y_coordina": 5405725.43, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 53.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 29.0, "Total_wall": 87.7, "Total_wa00": 0.0, "Total_outw": 195.5, "Total_shar": 151.6, "Total_roof": 29.0, "Gross_volu": 117.8, "Is_Gross_v": "false", "Heated_vol": 117.8, "Ridge_mean": 4.1, "Eaves_mean": 4.08, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.237, "Heated_are": 53.1, "Mean_Uvalu": 0.47, "Specific_d": "32,9", "Specific_s": 23.7, "Total_Year": 3004.0, "January_He": 393.0, "February_H": 225.0, "March_Heat": 72.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 13.0, "November_H": 171.0, "December_H": 380.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196175142573463, 48.788835873525642, 0.0 ], [ 9.19619816487274, 48.788806878889098, 0.0 ], [ 9.196220747926402, 48.788839752464725, 0.0 ], [ 9.196201310639946, 48.788845810467969, 0.0 ], [ 9.196223760078139, 48.78887931373594, 0.0 ], [ 9.196310755948184, 48.788853177528672, 0.0 ], [ 9.196321158026025, 48.78886835689125, 0.0 ], [ 9.196218394337254, 48.788899285928196, 0.0 ], [ 9.196175142573463, 48.788835873525642, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00013107", "Latitude": 48.7887, "Longitude": 9.19653, "X_coordina": 3514512.97, "Y_coordina": 5405711.22, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 24.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 26.4, "Total_wall": 50.8, "Total_wa00": 0.0, "Total_outw": 174.5, "Total_shar": 0.0, "Total_roof": 26.4, "Gross_volu": 87.4, "Is_Gross_v": "false", "Heated_vol": 64.0, "Ridge_mean": 3.3, "Eaves_mean": 3.29, "Storey_num": 1, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 1.401, "Heated_are": 24.1, "Mean_Uvalu": 0.46, "Specific_d": "32,9", "Specific_s": 45.0, "Total_Year": 1876.0, "January_He": 306.0, "February_H": 199.0, "March_Heat": 97.0, "April_Heat": 13.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 22.0, "November_H": 151.0, "December_H": 296.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196532859809588, 48.788714945731883, 0.0 ], [ 9.196472468366004, 48.788758122212116, 0.0 ], [ 9.19643032381507, 48.788734364343235, 0.0 ], [ 9.19649112458654, 48.78869145695743, 0.0 ], [ 9.196532859809588, 48.788714945731883, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000130f6", "Latitude": 48.7948, "Longitude": 9.21194, "X_coordina": 3515643.94, "Y_coordina": 5406392.48, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 5047.7, "SecondaryU": "office and administration", "Secondar00": 1011.1, "BuildingTy": "MFH", "Footprint_": 1263.9, "Total_wall": 2868.0, "Total_wa00": 0.0, "Total_outw": 4278.7, "Total_shar": 344.6, "Total_roof": 1263.9, "Gross_volu": 18933.8, "Is_Gross_v": "false", "Heated_vol": 18933.8, "Ridge_mean": 15.8, "Eaves_mean": 15.77, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 76, "Number_o00": 158, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.285, "Heated_are": 6058.8, "Mean_Uvalu": 0.35, "Specific_d": "15,6", "Specific_s": 31.3, "Total_Year": 284428.0, "January_He": 44596.0, "February_H": 33114.0, "March_Heat": 22775.0, "April_Heat": 6386.0, "May_Heatin": 218.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 665.0, "October_He": 10486.0, "November_H": 28593.0, "December_H": 42865.0, "PV_potenti": 60.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211864866841768, 48.794432168838199, 0.0 ], [ 9.211945317751669, 48.794435168128601, 0.0 ], [ 9.211972543541805, 48.794436287025178, 0.0 ], [ 9.211966391726769, 48.79449447889192, 0.0 ], [ 9.212043167920672, 48.794497484877581, 0.0 ], [ 9.21203456925924, 48.794588683198668, 0.0 ], [ 9.21202909764343, 48.794646783891295, 0.0 ], [ 9.212013342409117, 48.794816138954211, 0.0 ], [ 9.211966516484086, 48.794814876297671, 0.0 ], [ 9.211964566575622, 48.794836641386908, 0.0 ], [ 9.211938180656627, 48.795131908971413, 0.0 ], [ 9.2119557413882, 48.795132596040716, 0.0 ], [ 9.211950928565219, 48.795185569869318, 0.0 ], [ 9.211948602892553, 48.795215069073642, 0.0 ], [ 9.21190300041984, 48.795213534369005, 0.0 ], [ 9.211788382149564, 48.795209788577665, 0.0 ], [ 9.211752499452054, 48.794801152018131, 0.0 ], [ 9.211832858459116, 48.794491217575505, 0.0 ], [ 9.211859266893018, 48.794492158155187, 0.0 ], [ 9.211864866841768, 48.794432168838199, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000130f8", "Latitude": 48.79491, "Longitude": 9.21202, "X_coordina": 3515649.88, "Y_coordina": 5406404.09, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 234.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 86.1, "Total_wall": 198.8, "Total_wa00": 0.0, "Total_outw": 341.7, "Total_shar": 341.8, "Total_roof": 86.1, "Gross_volu": 601.4, "Is_Gross_v": "false", "Heated_vol": 601.4, "Ridge_mean": 7.0, "Eaves_mean": 6.99, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.617, "Heated_are": 234.2, "Mean_Uvalu": 0.48, "Specific_d": "14,6", "Specific_s": 51.3, "Total_Year": 15435.0, "January_He": 3057.0, "February_H": 2020.0, "March_Heat": 1162.0, "April_Heat": 242.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 52.0, "October_He": 617.0, "November_H": 1881.0, "December_H": 2970.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211971616420376, 48.795040071457407, 0.0 ], [ 9.211946473330995, 48.795039092605357, 0.0 ], [ 9.211966516484086, 48.794814876297671, 0.0 ], [ 9.212013342409117, 48.794816138954211, 0.0 ], [ 9.211993247370639, 48.795040912891558, 0.0 ], [ 9.211971616420376, 48.795040071457407, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000130bc", "Latitude": 48.7925, "Longitude": 9.19858, "X_coordina": 3514662.7, "Y_coordina": 5406133.39, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 132.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 48.0, "Total_wall": 68.1, "Total_wa00": 0.0, "Total_outw": 139.8, "Total_shar": 326.3, "Total_roof": 79.7, "Gross_volu": 461.0, "Is_Gross_v": "false", "Heated_vol": 413.0, "Ridge_mean": 12.6, "Eaves_mean": 6.59, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.449, "Heated_are": 132.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 43.3, "Total_Year": 7819.0, "January_He": 1392.0, "February_H": 982.0, "March_Heat": 628.0, "April_Heat": 142.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 19.0, "October_He": 313.0, "November_H": 886.0, "December_H": 1359.0, "PV_potenti": 2.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198601012758026, 48.792506803648983, 0.0 ], [ 9.198555692226803, 48.792541502382328, 0.0 ], [ 9.19851647730435, 48.792571424622267, 0.0 ], [ 9.198514977018016, 48.792570617896295, 0.0 ], [ 9.198470778307337, 48.792544706163973, 0.0 ], [ 9.198469557314843, 48.792545697427791, 0.0 ], [ 9.198467374405279, 48.792544352336165, 0.0 ], [ 9.198508491532689, 48.79251361752145, 0.0 ], [ 9.19853495318538, 48.792493878637423, 0.0 ], [ 9.198563586016325, 48.792472517378897, 0.0 ], [ 9.198575256119772, 48.792463774667446, 0.0 ], [ 9.198592172158744, 48.792473816938212, 0.0 ], [ 9.198571138892843, 48.792489589837174, 0.0 ], [ 9.198598694457253, 48.792505638640506, 0.0 ], [ 9.198601012758026, 48.792506803648983, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00012f7c", "Latitude": 48.79013, "Longitude": 9.19992, "X_coordina": 3514762.18, "Y_coordina": 5405869.93, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1223.1, "SecondaryU": "retail", "Secondar00": 186.4, "BuildingTy": "HH", "Footprint_": 233.0, "Total_wall": 880.1, "Total_wa00": 0.0, "Total_outw": 1159.9, "Total_shar": 205.3, "Total_roof": 354.3, "Gross_volu": 4526.6, "Is_Gross_v": "false", "Heated_vol": 4404.9, "Ridge_mean": 23.9, "Eaves_mean": 14.09, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 26, "Number_o00": 45, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.33, "Heated_are": 1409.6, "Mean_Uvalu": 0.48, "Specific_d": "23,4", "Specific_s": 36.3, "Total_Year": 84140.0, "January_He": 12373.0, "February_H": 8889.0, "March_Heat": 5827.0, "April_Heat": 1347.0, "May_Heatin": 47.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 143.0, "October_He": 2666.0, "November_H": 7789.0, "December_H": 12073.0, "PV_potenti": 14.46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19995679543465, 48.790063211354621, 0.0 ], [ 9.199978864706305, 48.790137270099812, 0.0 ], [ 9.199983081439459, 48.790136723235285, 0.0 ], [ 9.199994153356851, 48.79017285330454, 0.0 ], [ 9.200006521362157, 48.790213207531792, 0.0 ], [ 9.199927219143547, 48.79022341668427, 0.0 ], [ 9.199884371263854, 48.790228886483398, 0.0 ], [ 9.199880782125653, 48.790216123558544, 0.0 ], [ 9.199822426424285, 48.790223328799883, 0.0 ], [ 9.199750894345138, 48.790099628069655, 0.0 ], [ 9.19995679543465, 48.790063211354621, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00012ca7", "Latitude": 48.78821, "Longitude": 9.20944, "X_coordina": 3515461.99, "Y_coordina": 5405658.51, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 108.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 54.7, "Total_wall": 68.8, "Total_wa00": 0.0, "Total_outw": 162.5, "Total_shar": 199.4, "Total_roof": 85.9, "Gross_volu": 432.3, "Is_Gross_v": "false", "Heated_vol": 377.7, "Ridge_mean": 10.2, "Eaves_mean": 5.61, "Storey_num": 3, "Average_St": 3.1, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.518, "Heated_are": 108.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 48.5, "Total_Year": 6967.0, "January_He": 1311.0, "February_H": 885.0, "March_Heat": 545.0, "April_Heat": 136.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 17.0, "October_He": 253.0, "November_H": 797.0, "December_H": 1302.0, "PV_potenti": 3.24 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209334275001787, 48.788252390342031, 0.0 ], [ 9.209345450207636, 48.788223504533647, 0.0 ], [ 9.209359316476769, 48.788187240091787, 0.0 ], [ 9.209455189790251, 48.788203341937979, 0.0 ], [ 9.209442001778518, 48.788239065615777, 0.0 ], [ 9.209431102541997, 48.788268850168151, 0.0 ], [ 9.209334275001787, 48.788252390342031, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00012c77", "Latitude": 48.79102, "Longitude": 9.21373, "X_coordina": 3515776.36, "Y_coordina": 5405972.34, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 578.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 157.1, "Total_wall": 264.9, "Total_wa00": 0.0, "Total_outw": 445.4, "Total_shar": 377.4, "Total_roof": 219.5, "Gross_volu": 1963.9, "Is_Gross_v": "false", "Heated_vol": 1806.8, "Ridge_mean": 15.1, "Eaves_mean": 9.82, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.342, "Heated_are": 578.2, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 29805.0, "January_He": 5098.0, "February_H": 3598.0, "March_Heat": 2206.0, "April_Heat": 397.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 41.0, "October_He": 1067.0, "November_H": 3270.0, "December_H": 4963.0, "PV_potenti": 10.54 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213611112051391, 48.79097263998603, 0.0 ], [ 9.213683103609728, 48.790971876963312, 0.0 ], [ 9.213755639545536, 48.790971112885217, 0.0 ], [ 9.213758692753727, 48.791113186528605, 0.0 ], [ 9.213688295955018, 48.791104954278033, 0.0 ], [ 9.213613406126079, 48.79109628070055, 0.0 ], [ 9.213611112051391, 48.79097263998603, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00012787", "Latitude": 48.79016, "Longitude": 9.19964, "X_coordina": 3514741.3, "Y_coordina": 5405874.15, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 959.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 176.3, "Total_wall": 705.7, "Total_wa00": 0.0, "Total_outw": 897.4, "Total_shar": 193.0, "Total_roof": 294.8, "Gross_volu": 3173.4, "Is_Gross_v": "false", "Heated_vol": 2997.1, "Ridge_mean": 21.4, "Eaves_mean": 15.26, "Storey_num": 7, "Average_St": 2.9, "Number_of_": 15, "Number_o00": 29, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.386, "Heated_are": 959.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 35.2, "Total_Year": 48912.0, "January_He": 8508.0, "February_H": 5881.0, "March_Heat": 3482.0, "April_Heat": 617.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 58.0, "October_He": 1564.0, "November_H": 5193.0, "December_H": 8402.0, "PV_potenti": 11.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199576198214785, 48.790249024336362, 0.0 ], [ 9.199510163460518, 48.79024167510066, 0.0 ], [ 9.199453659518085, 48.790235388403381, 0.0 ], [ 9.199467318241139, 48.790179162479916, 0.0 ], [ 9.19967857365925, 48.790120076234217, 0.0 ], [ 9.199736226700308, 48.79021016964704, 0.0 ], [ 9.19965153529421, 48.790234146271629, 0.0 ], [ 9.199638945523068, 48.790216722915211, 0.0 ], [ 9.199580627946181, 48.790233549795822, 0.0 ], [ 9.199576198214785, 48.790249024336362, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00012731", "Latitude": 48.7877, "Longitude": 9.21329, "X_coordina": 3515745.29, "Y_coordina": 5405602.46, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 494.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 125.0, "Total_wall": 259.2, "Total_wa00": 0.0, "Total_outw": 409.9, "Total_shar": 338.5, "Total_roof": 187.5, "Gross_volu": 1591.6, "Is_Gross_v": "false", "Heated_vol": 1546.4, "Ridge_mean": 15.4, "Eaves_mean": 10.08, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.365, "Heated_are": 494.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 38.9, "Total_Year": 27096.0, "January_He": 4710.0, "February_H": 3361.0, "March_Heat": 2079.0, "April_Heat": 393.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 44.0, "October_He": 1027.0, "November_H": 3041.0, "December_H": 4594.0, "PV_potenti": 8.65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213291110664054, 48.787784271051635, 0.0 ], [ 9.21323119495624, 48.787775479563138, 0.0 ], [ 9.213165696303349, 48.787765889064751, 0.0 ], [ 9.213204941341377, 48.787649635038221, 0.0 ], [ 9.213270575555386, 48.787659135339794, 0.0 ], [ 9.21333021857833, 48.787667837389442, 0.0 ], [ 9.213291110664054, 48.787784271051635, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00012699", "Latitude": 48.79244, "Longitude": 9.19848, "X_coordina": 3514655.63, "Y_coordina": 5406127.14, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 133.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 48.0, "Total_wall": 72.0, "Total_wa00": 0.0, "Total_outw": 145.7, "Total_shar": 320.3, "Total_roof": 78.0, "Gross_volu": 464.8, "Is_Gross_v": "false", "Heated_vol": 416.8, "Ridge_mean": 12.8, "Eaves_mean": 6.7, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.452, "Heated_are": 133.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.9, "Total_Year": 7839.0, "January_He": 1396.0, "February_H": 983.0, "March_Heat": 626.0, "April_Heat": 140.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 18.0, "October_He": 309.0, "November_H": 885.0, "December_H": 1364.0, "PV_potenti": 2.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198505926330048, 48.792449866118758, 0.0 ], [ 9.198459244083274, 48.792484387314644, 0.0 ], [ 9.198417583261726, 48.792515302895943, 0.0 ], [ 9.198412671987406, 48.792512343879679, 0.0 ], [ 9.198413892980216, 48.792511352616444, 0.0 ], [ 9.198374059827941, 48.792488041108918, 0.0 ], [ 9.198372702381214, 48.792488942683192, 0.0 ], [ 9.198369565009923, 48.79248714961593, 0.0 ], [ 9.198412043141493, 48.792456412490843, 0.0 ], [ 9.198439185651905, 48.792436762379076, 0.0 ], [ 9.198461985032175, 48.792420177148031, 0.0 ], [ 9.198479084912227, 48.792407828144739, 0.0 ], [ 9.198495317935192, 48.792417242141909, 0.0 ], [ 9.198474148918139, 48.792433105180898, 0.0 ], [ 9.198501976973638, 48.792449243461455, 0.0 ], [ 9.19850347051605, 48.792448341651024, 0.0 ], [ 9.198505926330048, 48.792449866118758, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001257b", "Latitude": 48.79474, "Longitude": 9.20309, "X_coordina": 3514993.87, "Y_coordina": 5406383.57, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 671.8, "SecondaryU": "retail", "Secondar00": 150.6, "BuildingTy": "GMH", "Footprint_": 188.3, "Total_wall": 717.3, "Total_wa00": 0.0, "Total_outw": 1092.1, "Total_shar": 0.0, "Total_roof": 241.3, "Gross_volu": 2758.2, "Is_Gross_v": "false", "Heated_vol": 2569.9, "Ridge_mean": 16.7, "Eaves_mean": 12.52, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 13, "Number_o00": 27, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.436, "Heated_are": 822.4, "Mean_Uvalu": 0.48, "Specific_d": "26,3", "Specific_s": 43.8, "Total_Year": 57618.0, "January_He": 8790.0, "February_H": 6235.0, "March_Heat": 3891.0, "April_Heat": 848.0, "May_Heatin": 35.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 113.0, "October_He": 1901.0, "November_H": 5567.0, "December_H": 8601.0, "PV_potenti": 12.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203079942834499, 48.794667499109444, 0.0 ], [ 9.203132604624239, 48.794698429855991, 0.0 ], [ 9.203185266841789, 48.794729450501123, 0.0 ], [ 9.20302107083231, 48.794851496582297, 0.0 ], [ 9.202969773269734, 48.794821372693093, 0.0 ], [ 9.202915610665443, 48.794789545281787, 0.0 ], [ 9.203079942834499, 48.794667499109444, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001257c", "Latitude": 48.79487, "Longitude": 9.20328, "X_coordina": 3515007.38, "Y_coordina": 5406397.75, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 311.1, "SecondaryU": "retail", "Secondar00": 129.4, "BuildingTy": "MFH", "Footprint_": 161.8, "Total_wall": 336.6, "Total_wa00": 0.0, "Total_outw": 663.9, "Total_shar": 93.1, "Total_roof": 217.6, "Gross_volu": 1538.5, "Is_Gross_v": "false", "Heated_vol": 1376.7, "Ridge_mean": 11.8, "Eaves_mean": 7.19, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.494, "Heated_are": 440.5, "Mean_Uvalu": 0.48, "Specific_d": "32,6", "Specific_s": 52.1, "Total_Year": 37343.0, "January_He": 5463.0, "February_H": 3966.0, "March_Heat": 2567.0, "April_Heat": 627.0, "May_Heatin": 32.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 101.0, "October_He": 1310.0, "November_H": 3566.0, "December_H": 5331.0, "PV_potenti": 10.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203308724885057, 48.79483291446401, 0.0 ], [ 9.203358110278504, 48.794861333031491, 0.0 ], [ 9.203213736688948, 48.794971204699038, 0.0 ], [ 9.203163393808181, 48.794941618753242, 0.0 ], [ 9.203111687025611, 48.794911315802516, 0.0 ], [ 9.203255110471984, 48.794802075403553, 0.0 ], [ 9.203308724885057, 48.79483291446401, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001257d", "Latitude": 48.79479, "Longitude": 9.20338, "X_coordina": 3515014.66, "Y_coordina": 5406389.48, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 110.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 59.7, "Total_wall": 82.2, "Total_wa00": 0.0, "Total_outw": 202.1, "Total_shar": 92.9, "Total_roof": 59.7, "Gross_volu": 224.5, "Is_Gross_v": "false", "Heated_vol": 224.5, "Ridge_mean": 3.8, "Eaves_mean": 3.76, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.898, "Heated_are": 110.3, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203311572618986, 48.794762948911661, 0.0 ], [ 9.203412112698063, 48.794819782898394, 0.0 ], [ 9.203358110278504, 48.794861333031491, 0.0 ], [ 9.203308724885057, 48.79483291446401, 0.0 ], [ 9.203255110471984, 48.794802075403553, 0.0 ], [ 9.203311572618986, 48.794762948911661, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00012398", "Latitude": 48.79458, "Longitude": 9.20332, "X_coordina": 3515010.15, "Y_coordina": 5406365.53, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 922.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 227.8, "Total_wall": 698.6, "Total_wa00": 0.0, "Total_outw": 1057.7, "Total_shar": 0.0, "Total_roof": 347.9, "Gross_volu": 3109.0, "Is_Gross_v": "false", "Heated_vol": 2881.2, "Ridge_mean": 16.7, "Eaves_mean": 10.52, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 15, "Number_o00": 21, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.43, "Heated_are": 922.0, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 41.8, "Total_Year": 53150.0, "January_He": 9558.0, "February_H": 6709.0, "March_Heat": 4040.0, "April_Heat": 767.0, "May_Heatin": 25.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 89.0, "October_He": 1953.0, "November_H": 6026.0, "December_H": 9380.0, "PV_potenti": 16.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20342234387148, 48.794556198885239, 0.0 ], [ 9.203227343953916, 48.794700780562387, 0.0 ], [ 9.20317399867359, 48.794669131676571, 0.0 ], [ 9.20312038052437, 48.794637303400073, 0.0 ], [ 9.20331361187184, 48.794492904871888, 0.0 ], [ 9.203369137634624, 48.794525269231798, 0.0 ], [ 9.20342234387148, 48.794556198885239, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001205c", "Latitude": 48.78854, "Longitude": 9.19558, "X_coordina": 3514443.87, "Y_coordina": 5405692.32, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 848.9, "SecondaryU": "retail", "Secondar00": 174.1, "BuildingTy": "GMH", "Footprint_": 217.7, "Total_wall": 437.7, "Total_wa00": 0.0, "Total_outw": 669.3, "Total_shar": 561.6, "Total_roof": 248.7, "Gross_volu": 3237.0, "Is_Gross_v": "false", "Heated_vol": 3197.0, "Ridge_mean": 16.7, "Eaves_mean": 12.83, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 16, "Number_o00": 27, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.281, "Heated_are": 1023.0, "Mean_Uvalu": 0.47, "Specific_d": "25,6", "Specific_s": 32.7, "Total_Year": 59652.0, "January_He": 8147.0, "February_H": 5846.0, "March_Heat": 3784.0, "April_Heat": 845.0, "May_Heatin": 24.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 87.0, "October_He": 1744.0, "November_H": 5128.0, "December_H": 7886.0, "PV_potenti": 12.94 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195500275801285, 48.788486768628545, 0.0 ], [ 9.195574764525022, 48.788464071306791, 0.0 ], [ 9.195669058726789, 48.788600055528285, 0.0 ], [ 9.1956002785825, 48.788620944741055, 0.0 ], [ 9.195588588929185, 48.788624561542356, 0.0 ], [ 9.195508118703795, 48.788648977577189, 0.0 ], [ 9.195457488178008, 48.788577574225229, 0.0 ], [ 9.195417668493537, 48.788521529448794, 0.0 ], [ 9.19541205813832, 48.788513625688239, 0.0 ], [ 9.195425650921843, 48.788509466133135, 0.0 ], [ 9.195500275801285, 48.788486768628545, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001205d", "Latitude": 48.78854, "Longitude": 9.19543, "X_coordina": 3514432.2, "Y_coordina": 5405693.19, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 161.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 59.0, "Total_wall": 164.6, "Total_wa00": 0.0, "Total_outw": 273.3, "Total_shar": 76.1, "Total_roof": 59.0, "Gross_volu": 401.3, "Is_Gross_v": "false", "Heated_vol": 401.3, "Ridge_mean": 6.8, "Eaves_mean": 6.79, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.704, "Heated_are": 161.2, "Mean_Uvalu": 0.47, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195457488178008, 48.788577574225229, 0.0 ], [ 9.195362333299789, 48.788605342257576, 0.0 ], [ 9.195354312443351, 48.788607514032478, 0.0 ], [ 9.195306071062811, 48.78855553006877, 0.0 ], [ 9.195417668493537, 48.788521529448794, 0.0 ], [ 9.195457488178008, 48.788577574225229, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011cfb", "Latitude": 48.7881, "Longitude": 9.20906, "X_coordina": 3515434.1, "Y_coordina": 5405646.88, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 199.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.6, "Total_wall": 128.4, "Total_wa00": 0.0, "Total_outw": 212.5, "Total_shar": 262.6, "Total_roof": 85.7, "Gross_volu": 637.2, "Is_Gross_v": "false", "Heated_vol": 624.0, "Ridge_mean": 13.5, "Eaves_mean": 8.99, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.43, "Heated_are": 199.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.4, "Total_Year": 11237.0, "January_He": 1971.0, "February_H": 1378.0, "March_Heat": 888.0, "April_Heat": 225.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 26.0, "October_He": 415.0, "November_H": 1221.0, "December_H": 1940.0, "PV_potenti": 3.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209082311074376, 48.788106002744222, 0.0 ], [ 9.209056602040397, 48.788141569263402, 0.0 ], [ 9.209036441181928, 48.788169572118534, 0.0 ], [ 9.208947190427121, 48.788142397298081, 0.0 ], [ 9.208967892686578, 48.788113674086752, 0.0 ], [ 9.208993060034283, 48.788078738035878, 0.0 ], [ 9.209082311074376, 48.788106002744222, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011c7b", "Latitude": 48.7911, "Longitude": 9.20912, "X_coordina": 3515437.59, "Y_coordina": 5405980.56, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 123.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 48.5, "Total_wall": 67.6, "Total_wa00": 0.0, "Total_outw": 133.0, "Total_shar": 230.3, "Total_roof": 67.8, "Gross_volu": 409.5, "Is_Gross_v": "false", "Heated_vol": 385.3, "Ridge_mean": 10.5, "Eaves_mean": 6.37, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.463, "Heated_are": 123.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.6, "Total_Year": 7084.0, "January_He": 1276.0, "February_H": 871.0, "March_Heat": 544.0, "April_Heat": 136.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 243.0, "November_H": 774.0, "December_H": 1265.0, "PV_potenti": 2.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209047043275763, 48.791082359272494, 0.0 ], [ 9.209124251906472, 48.791092470384307, 0.0 ], [ 9.209112299726112, 48.791131069317736, 0.0 ], [ 9.209101152891261, 48.791166969079022, 0.0 ], [ 9.209025032541323, 48.79115676605295, 0.0 ], [ 9.209035634673111, 48.791120777364085, 0.0 ], [ 9.209047043275763, 48.791082359272494, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011c5c", "Latitude": 48.79164, "Longitude": 9.20379, "X_coordina": 3515045.88, "Y_coordina": 5406038.78, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 127.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 54.5, "Total_wall": 83.7, "Total_wa00": 0.0, "Total_outw": 172.1, "Total_shar": 208.1, "Total_roof": 68.4, "Gross_volu": 452.0, "Is_Gross_v": "false", "Heated_vol": 397.5, "Ridge_mean": 9.9, "Eaves_mean": 6.68, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.489, "Heated_are": 127.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 44.0, "Total_Year": 7611.0, "January_He": 1427.0, "February_H": 968.0, "March_Heat": 540.0, "April_Heat": 81.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 266.0, "November_H": 902.0, "December_H": 1401.0, "PV_potenti": 2.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203805354301165, 48.791634983638588, 0.0 ], [ 9.203809439391316, 48.791635515950418, 0.0 ], [ 9.20379429388772, 48.79169318378348, 0.0 ], [ 9.203790617448185, 48.79169274067155, 0.0 ], [ 9.203734110257237, 48.791686186309292, 0.0 ], [ 9.203686181192758, 48.791680605906691, 0.0 ], [ 9.203682096464215, 48.791680163513469, 0.0 ], [ 9.203697649654847, 48.791622315126688, 0.0 ], [ 9.203750480699018, 48.791628516316777, 0.0 ], [ 9.203805354301165, 48.791634983638588, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011b95", "Latitude": 48.78829, "Longitude": 9.19696, "X_coordina": 3514545.33, "Y_coordina": 5405665.62, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 244.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 167.2, "Total_wall": 292.7, "Total_wa00": 0.0, "Total_outw": 638.5, "Total_shar": 104.3, "Total_roof": 177.7, "Gross_volu": 1031.2, "Is_Gross_v": "false", "Heated_vol": 863.9, "Ridge_mean": 7.2, "Eaves_mean": 5.09, "Storey_num": 2, "Average_St": 3.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.674, "Heated_are": 244.7, "Mean_Uvalu": 0.45, "Specific_d": "24,8", "Specific_s": 66.4, "Total_Year": 22325.0, "January_He": 3802.0, "February_H": 2684.0, "March_Heat": 1748.0, "April_Heat": 514.0, "May_Heatin": 59.0, "June_Heati": 3, "July_Heati": 1, "August_Hea": 1, "September_": 139.0, "October_He": 1024.0, "November_H": 2508.0, "December_H": 3764.0, "PV_potenti": 4.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196782382828523, 48.788280458141926, 0.0 ], [ 9.196807223249817, 48.788264139509266, 0.0 ], [ 9.19682154974552, 48.788273646930861, 0.0 ], [ 9.19683023685619, 48.78826787696871, 0.0 ], [ 9.196849512079343, 48.788255254709014, 0.0 ], [ 9.196902179870561, 48.788290414737553, 0.0 ], [ 9.196899329414034, 48.788292308008216, 0.0 ], [ 9.196909835622789, 48.788299304088582, 0.0 ], [ 9.196929246573923, 48.788286591659848, 0.0 ], [ 9.196982321057531, 48.788251790353073, 0.0 ], [ 9.197028575558399, 48.788282555035096, 0.0 ], [ 9.197042765661113, 48.788291972738882, 0.0 ], [ 9.197056474971628, 48.788282866990862, 0.0 ], [ 9.197083081824667, 48.788300626340956, 0.0 ], [ 9.197052812746314, 48.788320731116052, 0.0 ], [ 9.197057589556143, 48.788324229964402, 0.0 ], [ 9.197053517128847, 48.788326844719187, 0.0 ], [ 9.197022293646702, 48.788346501501074, 0.0 ], [ 9.196975458729739, 48.788376076581081, 0.0 ], [ 9.196925000577725, 48.788349185783986, 0.0 ], [ 9.196891998324039, 48.7883316171799, 0.0 ], [ 9.196865401768292, 48.78835126600805, 0.0 ], [ 9.196817672492248, 48.788326168971707, 0.0 ], [ 9.196810072315488, 48.788331487456894, 0.0 ], [ 9.196757542039556, 48.788296686846166, 0.0 ], [ 9.196782382828523, 48.788280458141926, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011b96", "Latitude": 48.78835, "Longitude": 9.19696, "X_coordina": 3514545.2, "Y_coordina": 5405671.65, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 59.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 32.8, "Total_wall": 63.9, "Total_wa00": 0.0, "Total_outw": 132.4, "Total_shar": 104.4, "Total_roof": 32.8, "Gross_volu": 153.3, "Is_Gross_v": "false", "Heated_vol": 153.3, "Ridge_mean": 4.7, "Eaves_mean": 4.66, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.845, "Heated_are": 59.6, "Mean_Uvalu": 0.44, "Specific_d": "24,8", "Specific_s": 64.8, "Total_Year": 5340.0, "January_He": 843.0, "February_H": 636.0, "March_Heat": 461.0, "April_Heat": 161.0, "May_Heatin": 20.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 277.0, "November_H": 590.0, "December_H": 821.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196980779539857, 48.788379484578392, 0.0 ], [ 9.19694386281664, 48.788404906191161, 0.0 ], [ 9.196856717813064, 48.788357845280238, 0.0 ], [ 9.196865401768292, 48.78835126600805, 0.0 ], [ 9.196891998324039, 48.7883316171799, 0.0 ], [ 9.196975458729739, 48.788376076581081, 0.0 ], [ 9.196980779539857, 48.788379484578392, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011aed", "Latitude": 48.78784, "Longitude": 9.21358, "X_coordina": 3515766.75, "Y_coordina": 5405618.1, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 474.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 122.7, "Total_wall": 235.6, "Total_wa00": 0.0, "Total_outw": 395.6, "Total_shar": 336.6, "Total_roof": 209.1, "Gross_volu": 1579.4, "Is_Gross_v": "false", "Heated_vol": 1483.7, "Ridge_mean": 16.1, "Eaves_mean": 9.64, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.372, "Heated_are": 474.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 39.7, "Total_Year": 26350.0, "January_He": 4620.0, "February_H": 3283.0, "March_Heat": 2016.0, "April_Heat": 375.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 997.0, "November_H": 2979.0, "December_H": 4508.0, "PV_potenti": 10.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213459423043203, 48.787906075533137, 0.0 ], [ 9.213498260777861, 48.78779018185913, 0.0 ], [ 9.213564031316254, 48.787799681740623, 0.0 ], [ 9.213621767819532, 48.787808027480118, 0.0 ], [ 9.213583066442288, 48.787923920942518, 0.0 ], [ 9.21352587454073, 48.787915664097703, 0.0 ], [ 9.213459423043203, 48.787906075533137, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000119c6", "Latitude": 48.7906, "Longitude": 9.19963, "X_coordina": 3514740.27, "Y_coordina": 5405922.57, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 463.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 87.6, "Total_wall": 394.3, "Total_wa00": 0.0, "Total_outw": 553.8, "Total_shar": 283.9, "Total_roof": 136.2, "Gross_volu": 1537.2, "Is_Gross_v": "false", "Heated_vol": 1449.6, "Ridge_mean": 20.1, "Eaves_mean": 14.6, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 7, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.419, "Heated_are": 463.9, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 40.8, "Total_Year": 26272.0, "January_He": 4768.0, "February_H": 3269.0, "March_Heat": 1925.0, "April_Heat": 328.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 41.0, "October_He": 948.0, "November_H": 2974.0, "December_H": 4662.0, "PV_potenti": 2.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199524017683073, 48.790646667086065, 0.0 ], [ 9.199495097624034, 48.790629541779296, 0.0 ], [ 9.199593341603059, 48.790556713257338, 0.0 ], [ 9.199617759493655, 48.790571058711848, 0.0 ], [ 9.199619252603744, 48.790570066963802, 0.0 ], [ 9.199669726907329, 48.790600103869828, 0.0 ], [ 9.199557370516526, 48.790683388052564, 0.0 ], [ 9.199552187165787, 48.790680429555429, 0.0 ], [ 9.199525996806573, 48.790665277845804, 0.0 ], [ 9.199510718955761, 48.790656401877847, 0.0 ], [ 9.199524017683073, 48.790646667086065, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000119c4", "Latitude": 48.79074, "Longitude": 9.19942, "X_coordina": 3514725.19, "Y_coordina": 5405938.43, "LOD": "LOD2", "Year_of_co": 1934, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 267.5, "SecondaryU": "retail", "Secondar00": 76.3, "BuildingTy": "MFH", "Footprint_": 95.4, "Total_wall": 232.2, "Total_wa00": 0.0, "Total_outw": 360.3, "Total_shar": 332.0, "Total_roof": 95.4, "Gross_volu": 1169.7, "Is_Gross_v": "false", "Heated_vol": 1074.3, "Ridge_mean": 12.3, "Eaves_mean": 12.27, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 4, "Number_o00": 9, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.379, "Heated_are": 343.8, "Mean_Uvalu": 0.42, "Specific_d": "28,5", "Specific_s": 37.5, "Total_Year": 22684.0, "January_He": 3070.0, "February_H": 2209.0, "March_Heat": 1492.0, "April_Heat": 416.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 53.0, "October_He": 704.0, "November_H": 1926.0, "December_H": 2984.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199395305794718, 48.790827007028383, 0.0 ], [ 9.199285222760425, 48.790762902201358, 0.0 ], [ 9.199370709351754, 48.790698908462147, 0.0 ], [ 9.199470152031404, 48.790756736986459, 0.0 ], [ 9.199437041912248, 48.790781253557455, 0.0 ], [ 9.199395305794718, 48.790827007028383, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000115ff", "Latitude": 48.7943, "Longitude": 9.20476, "X_coordina": 3515116.11, "Y_coordina": 5406334.84, "LOD": "LOD2", "Year_of_co": 1934, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 397.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 97.6, "Total_wall": 468.7, "Total_wa00": 0.0, "Total_outw": 681.3, "Total_shar": 188.6, "Total_roof": 113.2, "Gross_volu": 1587.3, "Is_Gross_v": "false", "Heated_vol": 1489.7, "Ridge_mean": 17.3, "Eaves_mean": 15.01, "Storey_num": 5, "Average_St": 3.3, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.448, "Heated_are": 397.7, "Mean_Uvalu": 0.62, "Specific_d": "15,8", "Specific_s": 59.1, "Total_Year": 29811.0, "January_He": 5622.0, "February_H": 3975.0, "March_Heat": 2597.0, "April_Heat": 738.0, "May_Heatin": 52.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 108.0, "October_He": 1291.0, "November_H": 3576.0, "December_H": 5554.0, "PV_potenti": 4.49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204802633013744, 48.794298819114019, 0.0 ], [ 9.204795477328702, 48.794313039762393, 0.0 ], [ 9.204765097635674, 48.794372982876233, 0.0 ], [ 9.204657886321407, 48.794349253791985, 0.0 ], [ 9.204662604978004, 48.794338184808026, 0.0 ], [ 9.204622142922691, 48.794328634889602, 0.0 ], [ 9.204646031463843, 48.794278954634486, 0.0 ], [ 9.204653454639455, 48.794263564513628, 0.0 ], [ 9.20471298803094, 48.794277217004392, 0.0 ], [ 9.204712449102866, 48.794278566815862, 0.0 ], [ 9.204802633013744, 48.794298819114019, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001149c", "Latitude": 48.78813, "Longitude": 9.20915, "X_coordina": 3515440.63, "Y_coordina": 5405649.98, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 162.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.7, "Total_wall": 162.5, "Total_wa00": 0.0, "Total_outw": 291.6, "Total_shar": 179.3, "Total_roof": 86.4, "Gross_volu": 616.5, "Is_Gross_v": "false", "Heated_vol": 559.8, "Ridge_mean": 13.1, "Eaves_mean": 8.62, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.527, "Heated_are": 162.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 52.4, "Total_Year": 11048.0, "January_He": 2067.0, "February_H": 1435.0, "March_Heat": 915.0, "April_Heat": 232.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 34.0, "October_He": 456.0, "November_H": 1295.0, "December_H": 2035.0, "PV_potenti": 3.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209145583667151, 48.788169463877161, 0.0 ], [ 9.209125152166692, 48.788197826933839, 0.0 ], [ 9.209036441181928, 48.788169572118534, 0.0 ], [ 9.209056602040397, 48.788141569263402, 0.0 ], [ 9.209082311074376, 48.788106002744222, 0.0 ], [ 9.209171021972686, 48.788134257524675, 0.0 ], [ 9.20915343189337, 48.788158658784525, 0.0 ], [ 9.209145583667151, 48.788169463877161, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001117e", "Latitude": 48.78803, "Longitude": 9.21167, "X_coordina": 3515626.29, "Y_coordina": 5405639.36, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 181.6, "SecondaryU": "retail", "Secondar00": 54.4, "BuildingTy": "MFH", "Footprint_": 68.1, "Total_wall": 201.0, "Total_wa00": 0.0, "Total_outw": 287.3, "Total_shar": 172.5, "Total_roof": 111.5, "Gross_volu": 802.7, "Is_Gross_v": "false", "Heated_vol": 737.8, "Ridge_mean": 14.7, "Eaves_mean": 8.85, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 3, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.498, "Heated_are": 236.1, "Mean_Uvalu": 0.47, "Specific_d": "29,0", "Specific_s": 43.0, "Total_Year": 17007.0, "January_He": 2591.0, "February_H": 1723.0, "March_Heat": 1006.0, "April_Heat": 215.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 474.0, "November_H": 1548.0, "December_H": 2561.0, "PV_potenti": 5.06 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211562412434471, 48.788080431101299, 0.0 ], [ 9.211567494158151, 48.788059109858082, 0.0 ], [ 9.211579264552432, 48.78801025968577, 0.0 ], [ 9.211643402732332, 48.788019943509369, 0.0 ], [ 9.211697464067186, 48.788028117119445, 0.0 ], [ 9.211683312672033, 48.788093247862818, 0.0 ], [ 9.211627219414865, 48.788087326071683, 0.0 ], [ 9.211562412434471, 48.788080431101299, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011180", "Latitude": 48.78801, "Longitude": 9.21156, "X_coordina": 3515617.92, "Y_coordina": 5405636.49, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 41.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.1, "Total_wall": 45.4, "Total_wa00": 0.0, "Total_outw": 113.2, "Total_shar": 73.8, "Total_roof": 49.1, "Gross_volu": 178.0, "Is_Gross_v": "false", "Heated_vol": 128.9, "Ridge_mean": 3.6, "Eaves_mean": 3.62, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.904, "Heated_are": 41.2, "Mean_Uvalu": 0.36, "Specific_d": "73,0", "Specific_s": 75.7, "Total_Year": 6135.0, "January_He": 722.0, "February_H": 516.0, "March_Heat": 359.0, "April_Heat": 134.0, "May_Heatin": 19.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 29.0, "October_He": 182.0, "November_H": 454.0, "December_H": 709.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211452447286751, 48.788046641922165, 0.0 ], [ 9.211466376289341, 48.787993291614683, 0.0 ], [ 9.211579264552432, 48.78801025968577, 0.0 ], [ 9.211567494158151, 48.788059109858082, 0.0 ], [ 9.211452447286751, 48.788046641922165, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011109", "Latitude": 48.78928, "Longitude": 9.20247, "X_coordina": 3514949.29, "Y_coordina": 5405776.84, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 714.1, "SecondaryU": "retail", "Secondar00": 142.7, "BuildingTy": "GMH", "Footprint_": 178.4, "Total_wall": 386.0, "Total_wa00": 0.0, "Total_outw": 561.7, "Total_shar": 531.0, "Total_roof": 208.8, "Gross_volu": 2855.8, "Is_Gross_v": "false", "Heated_vol": 2677.4, "Ridge_mean": 17.8, "Eaves_mean": 14.18, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 14, "Number_o00": 22, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.281, "Heated_are": 856.8, "Mean_Uvalu": 0.43, "Specific_d": "25,4", "Specific_s": 29.8, "Total_Year": 47220.0, "January_He": 6210.0, "February_H": 4447.0, "March_Heat": 2956.0, "April_Heat": 717.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 62.0, "October_He": 1234.0, "November_H": 3781.0, "December_H": 6061.0, "PV_potenti": 10.89 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202523236350467, 48.789282595553473, 0.0 ], [ 9.202524396726744, 48.789300398393372, 0.0 ], [ 9.202526995453244, 48.789337442362317, 0.0 ], [ 9.202528152937068, 48.789354525817998, 0.0 ], [ 9.202358198818912, 48.789360579704528, 0.0 ], [ 9.202322819937441, 48.789361810875214, 0.0 ], [ 9.202325512829322, 48.789354612252914, 0.0 ], [ 9.202320698118397, 48.789307950343442, 0.0 ], [ 9.202315315556854, 48.789255444394449, 0.0 ], [ 9.202521189228714, 48.789247349086814, 0.0 ], [ 9.202523236350467, 48.789282595553473, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001110a", "Latitude": 48.78935, "Longitude": 9.20249, "X_coordina": 3514950.93, "Y_coordina": 5405784.72, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 81.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 50.0, "Total_wall": 90.8, "Total_wa00": 0.0, "Total_outw": 188.4, "Total_shar": 160.4, "Total_roof": 50.0, "Gross_volu": 277.8, "Is_Gross_v": "false", "Heated_vol": 254.6, "Ridge_mean": 5.6, "Eaves_mean": 5.56, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.717, "Heated_are": 81.5, "Mean_Uvalu": 0.44, "Specific_d": "73,0", "Specific_s": 79.3, "Total_Year": 12412.0, "January_He": 1400.0, "February_H": 1079.0, "March_Heat": 806.0, "April_Heat": 312.0, "May_Heatin": 40.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 80.0, "October_He": 435.0, "November_H": 960.0, "December_H": 1350.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202361336727344, 48.789396363798431, 0.0 ], [ 9.202358198818912, 48.789360579704528, 0.0 ], [ 9.202528152937068, 48.789354525817998, 0.0 ], [ 9.202530611959542, 48.789390670795839, 0.0 ], [ 9.202361336727344, 48.789396363798431, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001106f", "Latitude": 48.79019, "Longitude": 9.20451, "X_coordina": 3515099.47, "Y_coordina": 5405877.8, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 578.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 118.2, "Total_wall": 600.2, "Total_wa00": 0.0, "Total_outw": 829.7, "Total_shar": 0.0, "Total_roof": 159.8, "Gross_volu": 1925.8, "Is_Gross_v": "false", "Heated_vol": 1807.7, "Ridge_mean": 18.3, "Eaves_mean": 14.73, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 9, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.479, "Heated_are": 578.4, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 42.0, "Total_Year": 33434.0, "January_He": 6122.0, "February_H": 4191.0, "March_Heat": 2458.0, "April_Heat": 452.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 52.0, "October_He": 1175.0, "November_H": 3781.0, "December_H": 6025.0, "PV_potenti": 7.01 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204452685609963, 48.790139935171318, 0.0 ], [ 9.20457491864922, 48.790212016689061, 0.0 ], [ 9.204486588858911, 48.790277817815934, 0.0 ], [ 9.204363676781663, 48.7902060971049, 0.0 ], [ 9.204452685609963, 48.790139935171318, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00011037", "Latitude": 48.79099, "Longitude": 9.2035, "X_coordina": 3515024.66, "Y_coordina": 5405966.61, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 791.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 189.6, "Total_wall": 711.7, "Total_wa00": 0.0, "Total_outw": 1069.9, "Total_shar": 0.0, "Total_roof": 221.4, "Gross_volu": 2662.0, "Is_Gross_v": "false", "Heated_vol": 2472.3, "Ridge_mean": 15.5, "Eaves_mean": 12.53, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 10, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.443, "Heated_are": 791.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 40.4, "Total_Year": 44490.0, "January_He": 8009.0, "February_H": 5532.0, "March_Heat": 3284.0, "April_Heat": 606.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 68.0, "October_He": 1578.0, "November_H": 4989.0, "December_H": 7873.0, "PV_potenti": 11.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203354085135061, 48.791002809126503, 0.0 ], [ 9.203316004510047, 48.790975629510761, 0.0 ], [ 9.203365149542304, 48.790945508245997, 0.0 ], [ 9.203413886958073, 48.790915567527342, 0.0 ], [ 9.203592689326763, 48.791043302779933, 0.0 ], [ 9.203542728854929, 48.791073695353369, 0.0 ], [ 9.203494397103938, 48.791103005943548, 0.0 ], [ 9.203456179868528, 48.791075736692378, 0.0 ], [ 9.203421511329122, 48.791050979021001, 0.0 ], [ 9.203414004280557, 48.791045596864876, 0.0 ], [ 9.203395714453206, 48.791032500322935, 0.0 ], [ 9.203388890066787, 48.791027656501086, 0.0 ], [ 9.203354085135061, 48.791002809126503, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010994", "Latitude": 48.79434, "Longitude": 9.2049, "X_coordina": 3515126.75, "Y_coordina": 5406339.04, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 550.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 104.2, "Total_wall": 490.8, "Total_wa00": 0.0, "Total_outw": 654.6, "Total_shar": 237.0, "Total_roof": 119.5, "Gross_volu": 1793.7, "Is_Gross_v": "false", "Heated_vol": 1719.8, "Ridge_mean": 18.2, "Eaves_mean": 16.09, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 9, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.411, "Heated_are": 550.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.7, "Total_Year": 31120.0, "January_He": 5483.0, "February_H": 3834.0, "March_Heat": 2446.0, "April_Heat": 584.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 69.0, "October_He": 1165.0, "November_H": 3428.0, "December_H": 5372.0, "PV_potenti": 5.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204765097635674, 48.794372982876233, 0.0 ], [ 9.204796961663238, 48.794309889798051, 0.0 ], [ 9.204802633013744, 48.794298819114019, 0.0 ], [ 9.204888728382196, 48.794317729762405, 0.0 ], [ 9.204889134131232, 48.794317099575586, 0.0 ], [ 9.204949755749862, 48.79433057016066, 0.0 ], [ 9.204944895192707, 48.794340200631972, 0.0 ], [ 9.204916000723454, 48.794397173664642, 0.0 ], [ 9.204908170394193, 48.794412834297184, 0.0 ], [ 9.204839238637986, 48.794397490077579, 0.0 ], [ 9.204842205109838, 48.794390650610367, 0.0 ], [ 9.204765097635674, 48.794372982876233, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010995", "Latitude": 48.79435, "Longitude": 9.205, "X_coordina": 3515133.73, "Y_coordina": 5406341.03, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 20.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 22.6, "Total_wall": 29.3, "Total_wa00": 0.0, "Total_outw": 95.0, "Total_shar": 47.2, "Total_roof": 22.6, "Gross_volu": 49.6, "Is_Gross_v": "false", "Heated_vol": 49.6, "Ridge_mean": 2.2, "Eaves_mean": 2.18, "Storey_num": 1, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.502, "Heated_are": 20.8, "Mean_Uvalu": 0.4, "Specific_d": "non calculated", "Specific_s": 90.5, "Total_Year": 1882.0, "January_He": 427.0, "February_H": 303.0, "March_Heat": 208.0, "April_Heat": 67.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 21.0, "October_He": 136.0, "November_H": 291.0, "December_H": 422.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204988897491649, 48.794350103829558, 0.0 ], [ 9.204959185708104, 48.794406898480702, 0.0 ], [ 9.204916000723454, 48.794397173664642, 0.0 ], [ 9.204944895192707, 48.794340200631972, 0.0 ], [ 9.204988897491649, 48.794350103829558, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001082f", "Latitude": 48.78769, "Longitude": 9.20929, "X_coordina": 3515451.38, "Y_coordina": 5405600.65, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 582.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 159.6, "Total_wall": 361.9, "Total_wa00": 0.0, "Total_outw": 547.8, "Total_shar": 313.8, "Total_roof": 229.3, "Gross_volu": 2194.3, "Is_Gross_v": "false", "Heated_vol": 2034.7, "Ridge_mean": 16.3, "Eaves_mean": 11.17, "Storey_num": 5, "Average_St": 3.1, "Number_of_": 9, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.358, "Heated_are": 582.6, "Mean_Uvalu": 0.56, "Specific_d": "15,8", "Specific_s": 46.4, "Total_Year": 36288.0, "January_He": 6346.0, "February_H": 4564.0, "March_Heat": 3149.0, "April_Heat": 1006.0, "May_Heatin": 67.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 139.0, "October_He": 1532.0, "November_H": 4035.0, "December_H": 6222.0, "PV_potenti": 10.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209369183455127, 48.787680322471104, 0.0 ], [ 9.209353592349149, 48.787727201045485, 0.0 ], [ 9.20934015241383, 48.787767781050448, 0.0 ], [ 9.209127043533513, 48.787735975574435, 0.0 ], [ 9.209141300522708, 48.787695484033932, 0.0 ], [ 9.209157843297623, 48.787648333988585, 0.0 ], [ 9.209369183455127, 48.787680322471104, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000106a6", "Latitude": 48.7915, "Longitude": 9.20341, "X_coordina": 3515018.07, "Y_coordina": 5406023.52, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 497.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 128.5, "Total_wall": 222.8, "Total_wa00": 0.0, "Total_outw": 342.0, "Total_shar": 524.8, "Total_roof": 152.3, "Gross_volu": 1885.0, "Is_Gross_v": "false", "Heated_vol": 1756.5, "Ridge_mean": 16.5, "Eaves_mean": 12.82, "Storey_num": 5, "Average_St": 3.1, "Number_of_": 8, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.277, "Heated_are": 497.0, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 35.0, "Total_Year": 25252.0, "January_He": 4230.0, "February_H": 3033.0, "March_Heat": 1932.0, "April_Heat": 381.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 937.0, "November_H": 2716.0, "December_H": 4103.0, "PV_potenti": 7.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203378842585058, 48.791471267409612, 0.0 ], [ 9.203456319243221, 48.791480482608506, 0.0 ], [ 9.203428550432729, 48.791580256943369, 0.0 ], [ 9.20335202666606, 48.791571129966897, 0.0 ], [ 9.203277273273022, 48.791562269585391, 0.0 ], [ 9.203282899968833, 48.791540138446351, 0.0 ], [ 9.203302455089322, 48.791462140159425, 0.0 ], [ 9.203378842585058, 48.791471267409612, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000106a7", "Latitude": 48.79145, "Longitude": 9.20315, "X_coordina": 3514998.81, "Y_coordina": 5406017.35, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 66.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 35.7, "Total_wall": 88.9, "Total_wa00": 0.0, "Total_outw": 227.2, "Total_shar": 0.0, "Total_roof": 35.7, "Gross_volu": 132.9, "Is_Gross_v": "false", "Heated_vol": 132.9, "Ridge_mean": 3.7, "Eaves_mean": 3.72, "Storey_num": 2, "Average_St": 1.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.206, "Heated_are": 66.2, "Mean_Uvalu": 0.48, "Specific_d": "32,9", "Specific_s": 21.0, "Total_Year": 3565.0, "January_He": 428.0, "February_H": 251.0, "March_Heat": 100.0, "April_Heat": 9.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 16.0, "November_H": 176.0, "December_H": 409.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203071386693427, 48.791434581618695, 0.0 ], [ 9.203150498573514, 48.79144433368127, 0.0 ], [ 9.203137785047289, 48.791497770730182, 0.0 ], [ 9.203058265884932, 48.791488289147921, 0.0 ], [ 9.203071386693427, 48.791434581618695, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000106a8", "Latitude": 48.79148, "Longitude": 9.20331, "X_coordina": 3515010.84, "Y_coordina": 5406020.94, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 26.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 32.3, "Total_wall": 41.2, "Total_wa00": 0.0, "Total_outw": 125.3, "Total_shar": 68.2, "Total_roof": 32.3, "Gross_volu": 88.9, "Is_Gross_v": "false", "Heated_vol": 82.5, "Ridge_mean": 2.7, "Eaves_mean": 2.75, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.224, "Heated_are": 26.4, "Mean_Uvalu": 0.39, "Specific_d": "non calculated", "Specific_s": 98.4, "Total_Year": 2599.0, "January_He": 578.0, "February_H": 423.0, "March_Heat": 296.0, "April_Heat": 108.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 181.0, "November_H": 399.0, "December_H": 574.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203234290609982, 48.791534559056601, 0.0 ], [ 9.203252891676334, 48.791456202767336, 0.0 ], [ 9.203302455089322, 48.791462140159425, 0.0 ], [ 9.203282899968833, 48.791540138446351, 0.0 ], [ 9.203234290609982, 48.791534559056601, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010522", "Latitude": 48.78819, "Longitude": 9.21275, "X_coordina": 3515705.59, "Y_coordina": 5405657.72, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 639.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 158.9, "Total_wall": 374.4, "Total_wa00": 0.0, "Total_outw": 581.1, "Total_shar": 310.3, "Total_roof": 234.2, "Gross_volu": 2135.0, "Is_Gross_v": "false", "Heated_vol": 1999.8, "Ridge_mean": 15.9, "Eaves_mean": 11.01, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 8, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.374, "Heated_are": 639.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 38.2, "Total_Year": 34551.0, "January_He": 5896.0, "February_H": 4168.0, "March_Heat": 2760.0, "April_Heat": 776.0, "May_Heatin": 33.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 83.0, "October_He": 1247.0, "November_H": 3657.0, "December_H": 5794.0, "PV_potenti": 10.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212822835143763, 48.788267308064917, 0.0 ], [ 9.212580621640642, 48.788240868256082, 0.0 ], [ 9.212591206949613, 48.788201642000871, 0.0 ], [ 9.212601656154822, 48.788162415995707, 0.0 ], [ 9.212838964819644, 48.788187605894549, 0.0 ], [ 9.21283096803181, 48.788227456854393, 0.0 ], [ 9.212822968569643, 48.788266678352734, 0.0 ], [ 9.212822835143763, 48.788267308064917, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000102ed", "Latitude": 48.78958, "Longitude": 9.19842, "X_coordina": 3514651.82, "Y_coordina": 5405808.59, "LOD": "LOD2", "Year_of_co": 1932, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 104.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 63.9, "Total_wall": 171.8, "Total_wa00": 0.0, "Total_outw": 337.9, "Total_shar": 0.0, "Total_roof": 63.9, "Gross_volu": 325.6, "Is_Gross_v": "false", "Heated_vol": 325.6, "Ridge_mean": 5.1, "Eaves_mean": 5.09, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.92, "Heated_are": 104.2, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198304937413488, 48.78962580169344, 0.0 ], [ 9.198298253695956, 48.789621946486733, 0.0 ], [ 9.198361233866448, 48.789545133157695, 0.0 ], [ 9.198429868521909, 48.789556345288837, 0.0 ], [ 9.198431912018256, 48.789556881309409, 0.0 ], [ 9.198450880122055, 48.789569887549781, 0.0 ], [ 9.198345176894959, 48.789649202460005, 0.0 ], [ 9.198338629617153, 48.789645436944312, 0.0 ], [ 9.198339986633588, 48.789644445447074, 0.0 ], [ 9.198306294430067, 48.789624810196599, 0.0 ], [ 9.198304937413488, 48.78962580169344, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000102e7", "Latitude": 48.7879, "Longitude": 9.21509, "X_coordina": 3515877.46, "Y_coordina": 5405625.95, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1202.8, "SecondaryU": "retail", "Secondar00": 274.9, "BuildingTy": "MFH", "Footprint_": 343.6, "Total_wall": 773.9, "Total_wa00": 0.0, "Total_outw": 1071.4, "Total_shar": 486.3, "Total_roof": 385.0, "Gross_volu": 4735.0, "Is_Gross_v": "false", "Heated_vol": 4617.7, "Ridge_mean": 15.9, "Eaves_mean": 11.05, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 18, "Number_o00": 34, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.322, "Heated_are": 1477.7, "Mean_Uvalu": 0.48, "Specific_d": "26,5", "Specific_s": 37.3, "Total_Year": 94191.0, "January_He": 13103.0, "February_H": 9552.0, "March_Heat": 6480.0, "April_Heat": 1625.0, "May_Heatin": 63.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 190.0, "October_He": 2981.0, "November_H": 8299.0, "December_H": 12777.0, "PV_potenti": 18.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214820651042324, 48.787956329565084, 0.0 ], [ 9.214809830941128, 48.787908240588358, 0.0 ], [ 9.214908035212176, 48.78789627736824, 0.0 ], [ 9.214954675506569, 48.787890615054764, 0.0 ], [ 9.215002703105453, 48.787884770285054, 0.0 ], [ 9.21508689766959, 48.787874541616674, 0.0 ], [ 9.215260863164962, 48.787853354282859, 0.0 ], [ 9.215262940230854, 48.787861713301197, 0.0 ], [ 9.215273043781847, 48.787901260827219, 0.0 ], [ 9.2152824557605, 48.787938201858672, 0.0 ], [ 9.215283284974124, 48.787941167789434, 0.0 ], [ 9.21528507756522, 48.78794664978183, 0.0 ], [ 9.215110707725259, 48.787968827067367, 0.0 ], [ 9.215108231259324, 48.787962537036726, 0.0 ], [ 9.214829667873198, 48.787996418698413, 0.0 ], [ 9.214820651042324, 48.787956329565084, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000102e8", "Latitude": 48.78785, "Longitude": 9.21506, "X_coordina": 3515875.26, "Y_coordina": 5405619.84, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 90.6, "SecondaryU": "retail", "Secondar00": 22.3, "BuildingTy": "MFH", "Footprint_": 27.9, "Total_wall": 201.4, "Total_wa00": 0.0, "Total_outw": 280.3, "Total_shar": 181.0, "Total_roof": 30.8, "Gross_volu": 380.8, "Is_Gross_v": "false", "Heated_vol": 352.9, "Ridge_mean": 15.3, "Eaves_mean": 11.82, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.723, "Heated_are": 112.9, "Mean_Uvalu": 0.52, "Specific_d": "27,1", "Specific_s": 49.1, "Total_Year": 8614.0, "January_He": 1485.0, "February_H": 908.0, "March_Heat": 497.0, "April_Heat": 103.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 13.0, "October_He": 217.0, "November_H": 808.0, "December_H": 1512.0, "PV_potenti": 1.08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214954553028614, 48.787890615283366, 0.0 ], [ 9.214947642702265, 48.787865809250285, 0.0 ], [ 9.21499715246914, 48.787859691945414, 0.0 ], [ 9.215074001011207, 48.787850106466159, 0.0 ], [ 9.215079713570201, 48.787849376408083, 0.0 ], [ 9.21508689766959, 48.787874541616674, 0.0 ], [ 9.215002703105453, 48.787884770285054, 0.0 ], [ 9.214954553028614, 48.787890615283366, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000102e9", "Latitude": 48.78788, "Longitude": 9.21535, "X_coordina": 3515896.41, "Y_coordina": 5405622.85, "LOD": "LOD2", "Year_of_co": 1959, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 119.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 40.0, "Total_wall": 79.1, "Total_wa00": 0.0, "Total_outw": 131.1, "Total_shar": 254.2, "Total_roof": 44.3, "Gross_volu": 413.7, "Is_Gross_v": "false", "Heated_vol": 374.7, "Ridge_mean": 11.4, "Eaves_mean": 9.26, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.417, "Heated_are": 119.9, "Mean_Uvalu": 0.48, "Specific_d": "73,0", "Specific_s": 52.7, "Total_Year": 15074.0, "January_He": 1465.0, "February_H": 1073.0, "March_Heat": 750.0, "April_Heat": 239.0, "May_Heatin": 23.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 365.0, "November_H": 929.0, "December_H": 1429.0, "PV_potenti": 1.85 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215347468285989, 48.78792944763557, 0.0 ], [ 9.2152824557605, 48.787938201858672, 0.0 ], [ 9.215273043781847, 48.787901260827219, 0.0 ], [ 9.215262940230854, 48.787861713301197, 0.0 ], [ 9.215322789067912, 48.787854767217063, 0.0 ], [ 9.215336301370534, 48.787895837066401, 0.0 ], [ 9.215347468285989, 48.78792944763557, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010293", "Latitude": 48.79505, "Longitude": 9.21239, "X_coordina": 3515676.52, "Y_coordina": 5406420.06, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 980.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 252.1, "Total_wall": 987.8, "Total_wa00": 0.0, "Total_outw": 1304.2, "Total_shar": 0.0, "Total_roof": 252.1, "Gross_volu": 3066.3, "Is_Gross_v": "false", "Heated_vol": 3062.5, "Ridge_mean": 13.5, "Eaves_mean": 13.52, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 12, "Number_o00": 28, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.487, "Heated_are": 980.0, "Mean_Uvalu": 0.42, "Specific_d": "15,8", "Specific_s": 42.3, "Total_Year": 56930.0, "January_He": 9935.0, "February_H": 7106.0, "March_Heat": 4654.0, "April_Heat": 1182.0, "May_Heatin": 48.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 148.0, "October_He": 2286.0, "November_H": 6354.0, "December_H": 9693.0, "PV_potenti": 8.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212419996811303, 48.795163303812174, 0.0 ], [ 9.212249837013493, 48.795157232978127, 0.0 ], [ 9.212259987472269, 48.795046788149804, 0.0 ], [ 9.212254678201132, 48.795046528164718, 0.0 ], [ 9.212261059473759, 48.794978264427357, 0.0 ], [ 9.212436255721881, 48.794984595725168, 0.0 ], [ 9.212419996811303, 48.795163303812174, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001023f", "Latitude": 48.79678, "Longitude": 9.21314, "X_coordina": 3515731.08, "Y_coordina": 5406612.49, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1097.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 592.1, "Total_wall": 473.2, "Total_wa00": 0.0, "Total_outw": 1045.4, "Total_shar": 268.8, "Total_roof": 655.5, "Gross_volu": 3818.2, "Is_Gross_v": "false", "Heated_vol": 3431.0, "Ridge_mean": 8.2, "Eaves_mean": 4.61, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.468, "Heated_are": 1097.9, "Mean_Uvalu": 0.48, "Specific_d": "32,9", "Specific_s": 10.4, "Total_Year": 47539.0, "January_He": 3972.0, "February_H": 1901.0, "March_Heat": 495.0, "April_Heat": 22.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 53.0, "November_H": 1203.0, "December_H": 3817.0, "PV_potenti": 36.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212849282683841, 48.796837157208728, 0.0 ], [ 9.212799986609035, 48.796831583127336, 0.0 ], [ 9.212797126760996, 48.796831228717679, 0.0 ], [ 9.212798463528133, 48.796825471142078, 0.0 ], [ 9.212801867818984, 48.796825824545664, 0.0 ], [ 9.21280989868246, 48.79679370700763, 0.0 ], [ 9.212806630504423, 48.796793353352754, 0.0 ], [ 9.212808369896376, 48.79678624618014, 0.0 ], [ 9.212811773804294, 48.796786509660627, 0.0 ], [ 9.21281578980159, 48.796770585775484, 0.0 ], [ 9.212820474177661, 48.796751783102202, 0.0 ], [ 9.212817069891688, 48.796751429699157, 0.0 ], [ 9.212818811943269, 48.796744951986092, 0.0 ], [ 9.212822080118247, 48.796745305640634, 0.0 ], [ 9.212830914305661, 48.796710039292734, 0.0 ], [ 9.212827510783193, 48.796709865735622, 0.0 ], [ 9.212829796132667, 48.796703117247716, 0.0 ], [ 9.212839737140678, 48.796704267881395, 0.0 ], [ 9.212839065717928, 48.796706427286914, 0.0 ], [ 9.212883186813102, 48.796711381453292, 0.0 ], [ 9.212883721743086, 48.796709132376307, 0.0 ], [ 9.212892981820669, 48.796710194340612, 0.0 ], [ 9.212892446510594, 48.796712353494804, 0.0 ], [ 9.212924720295501, 48.79671598069293, 0.0 ], [ 9.212925255223674, 48.796713731615768, 0.0 ], [ 9.212934378811919, 48.796714703905565, 0.0 ], [ 9.212933707773651, 48.79671695323443, 0.0 ], [ 9.212970339003466, 48.796721021980524, 0.0 ], [ 9.21297101004015, 48.796718772651438, 0.0 ], [ 9.212977818990499, 48.796719569371184, 0.0 ], [ 9.212977284064609, 48.796721818448574, 0.0 ], [ 9.213009693591422, 48.796725355448352, 0.0 ], [ 9.213010228896604, 48.796723196293634, 0.0 ], [ 9.213019352488182, 48.796724168576681, 0.0 ], [ 9.213018953674613, 48.79672641740251, 0.0 ], [ 9.213052588963517, 48.796730131969952, 0.0 ], [ 9.213053124266906, 48.79672797281502, 0.0 ], [ 9.213061975639132, 48.796728945598311, 0.0 ], [ 9.213061440336109, 48.79673110475327, 0.0 ], [ 9.213092897101008, 48.796734643492336, 0.0 ], [ 9.213093568132395, 48.796732394162561, 0.0 ], [ 9.21310214728511, 48.796733367446464, 0.0 ], [ 9.21310161236463, 48.79673561652443, 0.0 ], [ 9.213145052196266, 48.796740392004118, 0.0 ], [ 9.213145451385261, 48.796738233100697, 0.0 ], [ 9.213154711092681, 48.796739205121106, 0.0 ], [ 9.21315417617449, 48.796741454199307, 0.0 ], [ 9.213197343794958, 48.796746230163116, 0.0 ], [ 9.21319787871127, 48.79674398108471, 0.0 ], [ 9.213206185646834, 48.796744954864835, 0.0 ], [ 9.213205514239263, 48.796747114272435, 0.0 ], [ 9.213241192357559, 48.796751094773406, 0.0 ], [ 9.213241727271965, 48.796748845694822, 0.0 ], [ 9.213249625496319, 48.796749730305066, 0.0 ], [ 9.213249090582257, 48.7967519793837, 0.0 ], [ 9.213282181462652, 48.796755694892212, 0.0 ], [ 9.213282716375266, 48.796753445813422, 0.0 ], [ 9.213291022932811, 48.79675432966458, 0.0 ], [ 9.213290351909958, 48.796756578995499, 0.0 ], [ 9.213325212996713, 48.796760471060132, 0.0 ], [ 9.21332574790746, 48.796758221981158, 0.0 ], [ 9.213331603331961, 48.796758840599225, 0.0 ], [ 9.21333106842147, 48.796761089678235, 0.0 ], [ 9.213374099964724, 48.796765865827886, 0.0 ], [ 9.21337477098395, 48.796763616496506, 0.0 ], [ 9.213388797241452, 48.796765209131209, 0.0 ], [ 9.213387054881164, 48.796771596929915, 0.0 ], [ 9.213383650208563, 48.796771153620789, 0.0 ], [ 9.213374811440229, 48.796805251013417, 0.0 ], [ 9.213378352225787, 48.796805694070592, 0.0 ], [ 9.213376743685378, 48.796811542080007, 0.0 ], [ 9.213373339010163, 48.796811098770597, 0.0 ], [ 9.21336758272791, 48.796833860087204, 0.0 ], [ 9.213364368311796, 48.796846185565371, 0.0 ], [ 9.213367772607965, 48.796846538952238, 0.0 ], [ 9.213366029860889, 48.796852836827718, 0.0 ], [ 9.213362761293821, 48.796852393265809, 0.0 ], [ 9.213353251856798, 48.796888829910436, 0.0 ], [ 9.213356792648048, 48.796889272968279, 0.0 ], [ 9.213354918363009, 48.796896650169515, 0.0 ], [ 9.213344976924075, 48.79689540965758, 0.0 ], [ 9.213345512216657, 48.79689325050137, 0.0 ], [ 9.213301118314034, 48.796888207093893, 0.0 ], [ 9.213300447289873, 48.796890456424805, 0.0 ], [ 9.2132921403285, 48.796889482651558, 0.0 ], [ 9.213292675242077, 48.796887233572782, 0.0 ], [ 9.213259584274441, 48.796883518067517, 0.0 ], [ 9.213258912867339, 48.796885677475387, 0.0 ], [ 9.213250878510548, 48.796884793117876, 0.0 ], [ 9.213251413425921, 48.796882544039285, 0.0 ], [ 9.213216960593018, 48.79687865119655, 0.0 ], [ 9.213216289565217, 48.796880900526979, 0.0 ], [ 9.213207710385177, 48.796879927251638, 0.0 ], [ 9.213208381413343, 48.796877677921252, 0.0 ], [ 9.213176107504591, 48.796874050802863, 0.0 ], [ 9.213175572585943, 48.796876299881113, 0.0 ], [ 9.213165223203635, 48.796875150032335, 0.0 ], [ 9.213165894233644, 48.796872900702184, 0.0 ], [ 9.213124224108219, 48.796868211878923, 0.0 ], [ 9.213123416584606, 48.796870371537892, 0.0 ], [ 9.213114837408135, 48.79686939825563, 0.0 ], [ 9.213115236218531, 48.796867149429538, 0.0 ], [ 9.213073021278193, 48.796862371672432, 0.0 ], [ 9.213072486355061, 48.79686462075022, 0.0 ], [ 9.213062545310128, 48.796863470136692, 0.0 ], [ 9.213063080614489, 48.796861310981797, 0.0 ], [ 9.213030942837428, 48.796857683570884, 0.0 ], [ 9.213030407531724, 48.796859842725681, 0.0 ], [ 9.213018696285951, 48.79685851553586, 0.0 ], [ 9.213019367703003, 48.796856356129368, 0.0 ], [ 9.212987774375627, 48.796852727699353, 0.0 ], [ 9.212987103337923, 48.796854977028481, 0.0 ], [ 9.212977707120892, 48.796853915323553, 0.0 ], [ 9.212978378159001, 48.796851665994467, 0.0 ], [ 9.212947193931186, 48.796848216643795, 0.0 ], [ 9.212946658621991, 48.796850375798201, 0.0 ], [ 9.212936854074123, 48.79684931484497, 0.0 ], [ 9.212937389003153, 48.7968470657678, 0.0 ], [ 9.212903617153156, 48.796843261495738, 0.0 ], [ 9.212902809620473, 48.796845421153201, 0.0 ], [ 9.212893958230802, 48.796844448357746, 0.0 ], [ 9.212894357050878, 48.796842199532385, 0.0 ], [ 9.212858542403819, 48.796838129252905, 0.0 ], [ 9.212858007471358, 48.796840378329719, 0.0 ], [ 9.212848475148924, 48.796839316865814, 0.0 ], [ 9.212849282683841, 48.796837157208728, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010240", "Latitude": 48.79707, "Longitude": 9.21264, "X_coordina": 3515694.71, "Y_coordina": 5406644.8, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 106.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 85.3, "Total_wall": 120.4, "Total_wa00": 0.0, "Total_outw": 345.6, "Total_shar": 0.0, "Total_roof": 105.8, "Gross_volu": 451.6, "Is_Gross_v": "false", "Heated_vol": 366.3, "Ridge_mean": 7.0, "Eaves_mean": 4.2, "Storey_num": 2, "Average_St": 3.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.773, "Heated_are": 106.6, "Mean_Uvalu": 0.45, "Specific_d": "32,9", "Specific_s": 25.3, "Total_Year": 6206.0, "January_He": 840.0, "February_H": 471.0, "March_Heat": 174.0, "April_Heat": 14.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 32.0, "November_H": 357.0, "December_H": 814.0, "PV_potenti": 5.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21263839022482, 48.797146164320878, 0.0 ], [ 9.212534897128711, 48.797134935078454, 0.0 ], [ 9.212559661784757, 48.797036423118236, 0.0 ], [ 9.212663431467586, 48.79704873091007, 0.0 ], [ 9.21263839022482, 48.797146164320878, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010241", "Latitude": 48.79542, "Longitude": 9.21285, "X_coordina": 3515710.36, "Y_coordina": 5406461.46, "LOD": "LOD2", "Year_of_co": 1947, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 145.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 98.8, "Total_wall": 172.0, "Total_wa00": 0.0, "Total_outw": 378.6, "Total_shar": 0.0, "Total_roof": 136.5, "Gross_volu": 496.7, "Is_Gross_v": "false", "Heated_vol": 453.7, "Ridge_mean": 5.9, "Eaves_mean": 3.8, "Storey_num": 2, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.858, "Heated_are": 145.2, "Mean_Uvalu": 0.47, "Specific_d": "32,9", "Specific_s": 25.2, "Total_Year": 8423.0, "January_He": 1144.0, "February_H": 632.0, "March_Heat": 224.0, "April_Heat": 17.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 41.0, "November_H": 482.0, "December_H": 1112.0, "PV_potenti": 5.56 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212749618612653, 48.795510249855148, 0.0 ], [ 9.212778410479979, 48.795366588759933, 0.0 ], [ 9.212861331498958, 48.79537398910049, 0.0 ], [ 9.212832131542374, 48.795517650970453, 0.0 ], [ 9.212749618612653, 48.795510249855148, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010242", "Latitude": 48.79418, "Longitude": 9.21324, "X_coordina": 3515739.79, "Y_coordina": 5406323.7, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2723, "PrimaryUsa": "non-heated", "PrimaryU00": 237.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 290.3, "Total_wall": 216.5, "Total_wa00": 0.0, "Total_outw": 618.6, "Total_shar": 67.8, "Total_roof": 310.6, "Gross_volu": 967.5, "Is_Gross_v": "false", "Heated_vol": 740.6, "Ridge_mean": 4.1, "Eaves_mean": 2.54, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.845, "Heated_are": 237.0, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 17.07 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212997247580025, 48.794299780783838, 0.0 ], [ 9.213322191424304, 48.794057374864281, 0.0 ], [ 9.213363398331905, 48.794081757737345, 0.0 ], [ 9.213403922855422, 48.794105692242255, 0.0 ], [ 9.213079387025781, 48.794348007711726, 0.0 ], [ 9.21303708930135, 48.79432317713831, 0.0 ], [ 9.212997247580025, 48.794299780783838, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010243", "Latitude": 48.79585, "Longitude": 9.21334, "X_coordina": 3515746.2, "Y_coordina": 5406509.57, "LOD": "LOD2", "Year_of_co": 1923, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 2346.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 891.5, "Total_wall": 787.9, "Total_wa00": 0.0, "Total_outw": 1185.2, "Total_shar": 485.0, "Total_roof": 942.4, "Gross_volu": 7469.2, "Is_Gross_v": "false", "Heated_vol": 7333.7, "Ridge_mean": 11.4, "Eaves_mean": 7.35, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.353, "Heated_are": 2346.8, "Mean_Uvalu": 0.45, "Specific_d": "32,9", "Specific_s": 5.5, "Total_Year": 90120.0, "January_He": 4768.0, "February_H": 2209.0, "March_Heat": 469.0, "April_Heat": 14.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 27.0, "November_H": 1118.0, "December_H": 4401.0, "PV_potenti": 40.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213483920862449, 48.795990971081004, 0.0 ], [ 9.213407254007107, 48.795982210746672, 0.0 ], [ 9.213333174383076, 48.795973715339287, 0.0 ], [ 9.213263452541199, 48.795965751355652, 0.0 ], [ 9.213056465642897, 48.795942034968171, 0.0 ], [ 9.213055259325209, 48.795946443453253, 0.0 ], [ 9.212976958168873, 48.795937416085515, 0.0 ], [ 9.213026242733731, 48.795747586262742, 0.0 ], [ 9.213104819246995, 48.795757422399596, 0.0 ], [ 9.213102666657115, 48.79576336133654, 0.0 ], [ 9.213612777684752, 48.795821496041285, 0.0 ], [ 9.213589606225989, 48.795909933857772, 0.0 ], [ 9.213565898649245, 48.796000350980265, 0.0 ], [ 9.213483920862449, 48.795990971081004, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010244", "Latitude": 48.79546, "Longitude": 9.21319, "X_coordina": 3515735.25, "Y_coordina": 5406465.35, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 899.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 374.7, "Total_wall": 460.4, "Total_wa00": 0.0, "Total_outw": 631.0, "Total_shar": 250.0, "Total_roof": 374.7, "Gross_volu": 3035.4, "Is_Gross_v": "false", "Heated_vol": 2811.1, "Ridge_mean": 8.1, "Eaves_mean": 8.1, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.411, "Heated_are": 899.6, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 6.3, "Total_Year": 35247.0, "January_He": 2041.0, "February_H": 972.0, "March_Heat": 235.0, "April_Heat": 10.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 504.0, "December_H": 1911.0, "PV_potenti": 17.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213222416102903, 48.79556440865678, 0.0 ], [ 9.213137266835878, 48.795554809573368, 0.0 ], [ 9.213114701851557, 48.795552018741574, 0.0 ], [ 9.212963957572917, 48.795534942358763, 0.0 ], [ 9.213001326622653, 48.795391984735183, 0.0 ], [ 9.213196055510171, 48.795414285140289, 0.0 ], [ 9.213203420987815, 48.795385855664108, 0.0 ], [ 9.213324207650491, 48.795399749982835, 0.0 ], [ 9.213322063488958, 48.795407667226655, 0.0 ], [ 9.213309204605203, 48.7954566094539, 0.0 ], [ 9.213274616255658, 48.795452626955019, 0.0 ], [ 9.213244748763373, 48.795566975088818, 0.0 ], [ 9.213222416102903, 48.79556440865678, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010246", "Latitude": 48.7964, "Longitude": 9.2132, "X_coordina": 3515735.99, "Y_coordina": 5406570.15, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1755.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 900.7, "Total_wall": 799.5, "Total_wa00": 0.0, "Total_outw": 1630.5, "Total_shar": 51.3, "Total_roof": 911.9, "Gross_volu": 6151.7, "Is_Gross_v": "false", "Heated_vol": 5485.2, "Ridge_mean": 8.4, "Eaves_mean": 5.85, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.441, "Heated_are": 1755.3, "Mean_Uvalu": 0.46, "Specific_d": "32,9", "Specific_s": 9.1, "Total_Year": 73695.0, "January_He": 5619.0, "February_H": 2673.0, "March_Heat": 644.0, "April_Heat": 24.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 60.0, "November_H": 1653.0, "December_H": 5342.0, "PV_potenti": 42.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213335141775952, 48.79653402522775, 0.0 ], [ 9.21333594509103, 48.796530876416128, 0.0 ], [ 9.213299313208005, 48.796526627940288, 0.0 ], [ 9.213298510271908, 48.796529866674469, 0.0 ], [ 9.213286526494795, 48.796528450093035, 0.0 ], [ 9.21328719370287, 48.796525301533855, 0.0 ], [ 9.21324974478711, 48.796520964631881, 0.0 ], [ 9.213248941847915, 48.796524203365735, 0.0 ], [ 9.213235323991814, 48.796522609957755, 0.0 ], [ 9.213235991203009, 48.796519461398859, 0.0 ], [ 9.213198678405892, 48.796515124228236, 0.0 ], [ 9.213197875463504, 48.796518362961748, 0.0 ], [ 9.213185891691923, 48.796516946369849, 0.0 ], [ 9.21318669501607, 48.796513797559257, 0.0 ], [ 9.213150199648787, 48.796509638706816, 0.0 ], [ 9.213149668542282, 48.796512787013334, 0.0 ], [ 9.213137276824504, 48.796511461094937, 0.0 ], [ 9.213137807550845, 48.796508222865675, 0.0 ], [ 9.213098588469968, 48.796503709343646, 0.0 ], [ 9.213097785521319, 48.796506948076456, 0.0 ], [ 9.213087027506132, 48.796505709053179, 0.0 ], [ 9.213087694345546, 48.796502470572278, 0.0 ], [ 9.213051607705003, 48.796498400855874, 0.0 ], [ 9.213050804372642, 48.796501549665535, 0.0 ], [ 9.213040046359751, 48.796500310637875, 0.0 ], [ 9.213040849692764, 48.796497161828285, 0.0 ], [ 9.213004626949889, 48.796493092348918, 0.0 ], [ 9.213003823233985, 48.796496151235459, 0.0 ], [ 9.212990477993568, 48.796494647217848, 0.0 ], [ 9.212991281329593, 48.796491498408592, 0.0 ], [ 9.212953696354287, 48.796487161662071, 0.0 ], [ 9.212952893396574, 48.796490400393878, 0.0 ], [ 9.212837959984009, 48.796477214259042, 0.0 ], [ 9.212885908851762, 48.796293142088821, 0.0 ], [ 9.212924855531035, 48.796297656187015, 0.0 ], [ 9.212965844618966, 48.796302346342195, 0.0 ], [ 9.213000024819484, 48.796306239764583, 0.0 ], [ 9.21299921920286, 48.796308849037047, 0.0 ], [ 9.21303680404889, 48.796313185769094, 0.0 ], [ 9.213037473554245, 48.796310576748169, 0.0 ], [ 9.213050954856637, 48.796312080508677, 0.0 ], [ 9.213050285732725, 48.796314779452494, 0.0 ], [ 9.213086372241523, 48.79631884916968, 0.0 ], [ 9.213087177853781, 48.796316239896626, 0.0 ], [ 9.213099706012462, 48.796317655491499, 0.0 ], [ 9.213099036891091, 48.796320354435601, 0.0 ], [ 9.213136349154432, 48.796324601716044, 0.0 ], [ 9.213137018654777, 48.796321992694558, 0.0 ], [ 9.213148048850751, 48.796323231209428, 0.0 ], [ 9.213147379350964, 48.796325840230985, 0.0 ], [ 9.213186189969248, 48.79633035449266, 0.0 ], [ 9.213186859086075, 48.796327655548069, 0.0 ], [ 9.213199932069138, 48.796329160047001, 0.0 ], [ 9.213199126843548, 48.796331859243658, 0.0 ], [ 9.213234124119733, 48.796335841007505, 0.0 ], [ 9.213234793234067, 48.796333142062636, 0.0 ], [ 9.213246504363225, 48.796334469230793, 0.0 ], [ 9.213245835249509, 48.796337168175739, 0.0 ], [ 9.213283011428068, 48.796341415660677, 0.0 ], [ 9.213283817030494, 48.796338806386274, 0.0 ], [ 9.213297707057309, 48.796340399284489, 0.0 ], [ 9.213297037565052, 48.79634300830687, 0.0 ], [ 9.213333805423742, 48.796347256531675, 0.0 ], [ 9.213334474532871, 48.796344557586245, 0.0 ], [ 9.21334686659598, 48.796345973406346, 0.0 ], [ 9.213346197487491, 48.796348672351854, 0.0 ], [ 9.21338323757341, 48.796352920056563, 0.0 ], [ 9.213383907061328, 48.796350311033677, 0.0 ], [ 9.21347841359497, 48.796361106556184, 0.0 ], [ 9.213466090668183, 48.796408069481636, 0.0 ], [ 9.213463503058863, 48.796407714583864, 0.0 ], [ 9.213457207383513, 48.79643164591225, 0.0 ], [ 9.213459794994019, 48.79643200081015, 0.0 ], [ 9.213457518515639, 48.796440817535611, 0.0 ], [ 9.21345479517645, 48.796440552812754, 0.0 ], [ 9.2134484994929, 48.796464484140529, 0.0 ], [ 9.213451222833351, 48.796464748863542, 0.0 ], [ 9.213449079028486, 48.796472756031115, 0.0 ], [ 9.213446491415962, 48.796472401132974, 0.0 ], [ 9.213439927319431, 48.796497232192912, 0.0 ], [ 9.213442651043072, 48.796497586838939, 0.0 ], [ 9.213430193465726, 48.796544909703115, 0.0 ], [ 9.213335141775952, 48.79653402522775, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010247", "Latitude": 48.79402, "Longitude": 9.21382, "X_coordina": 3515781.97, "Y_coordina": 5406306.17, "LOD": "LOD2", "Year_of_co": 1940, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 246.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 183.6, "Total_wall": 201.5, "Total_wa00": 0.0, "Total_outw": 569.3, "Total_shar": 0.0, "Total_roof": 232.1, "Gross_volu": 953.4, "Is_Gross_v": "false", "Heated_vol": 769.8, "Ridge_mean": 6.8, "Eaves_mean": 3.62, "Storey_num": 2, "Average_St": 2.9, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.71, "Heated_are": 246.3, "Mean_Uvalu": 0.46, "Specific_d": "non calculated", "Specific_s": 84.1, "Total_Year": 20724.0, "January_He": 4543.0, "February_H": 3348.0, "March_Heat": 2380.0, "April_Heat": 806.0, "May_Heatin": 85.0, "June_Heati": 3, "July_Heati": 0, "August_Hea": 1, "September_": 253.0, "October_He": 1595.0, "November_H": 3221.0, "December_H": 4489.0, "PV_potenti": 11.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21388158483621, 48.793962367183589, 0.0 ], [ 9.213767930154356, 48.794152766552564, 0.0 ], [ 9.213714246539796, 48.79413901795958, 0.0 ], [ 9.213666421513329, 48.794126697249119, 0.0 ], [ 9.213779391421529, 48.793935220167768, 0.0 ], [ 9.213827899101197, 48.793948079105661, 0.0 ], [ 9.21388158483621, 48.793962367183589, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010249", "Latitude": 48.79501, "Longitude": 9.21335, "X_coordina": 3515746.97, "Y_coordina": 5406416.16, "LOD": "LOD2", "Year_of_co": 1948, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 432.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 119.1, "Total_wall": 324.7, "Total_wa00": 0.0, "Total_outw": 514.6, "Total_shar": 168.7, "Total_roof": 119.1, "Gross_volu": 1101.1, "Is_Gross_v": "false", "Heated_vol": 1101.1, "Ridge_mean": 9.3, "Eaves_mean": 9.25, "Storey_num": 4, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.511, "Heated_are": 432.1, "Mean_Uvalu": 0.47, "Specific_d": "32,9", "Specific_s": 8.0, "Total_Year": 17639.0, "January_He": 1212.0, "February_H": 606.0, "March_Heat": 145.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 11.0, "November_H": 348.0, "December_H": 1113.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213398525779033, 48.795079574384687, 0.0 ], [ 9.213187457377128, 48.795055416174478, 0.0 ], [ 9.21320446849923, 48.794990639725114, 0.0 ], [ 9.213205003396837, 48.794988390646019, 0.0 ], [ 9.213321839749176, 48.795001752740056, 0.0 ], [ 9.213359968070096, 48.795006088360878, 0.0 ], [ 9.213416071526005, 48.795012548824822, 0.0 ], [ 9.213398525779033, 48.795079574384687, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001024a", "Latitude": 48.794, "Longitude": 9.21407, "X_coordina": 3515800.6, "Y_coordina": 5406303.99, "LOD": "LOD2", "Year_of_co": 1947, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 270.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 186.6, "Total_wall": 192.8, "Total_wa00": 0.0, "Total_outw": 310.5, "Total_shar": 139.9, "Total_roof": 211.2, "Gross_volu": 1156.9, "Is_Gross_v": "false", "Heated_vol": 970.3, "Ridge_mean": 7.3, "Eaves_mean": 5.13, "Storey_num": 2, "Average_St": 3.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.547, "Heated_are": 270.8, "Mean_Uvalu": 0.48, "Specific_d": "non calculated", "Specific_s": 82.2, "Total_Year": 22260.0, "January_He": 4864.0, "February_H": 3587.0, "March_Heat": 2564.0, "April_Heat": 897.0, "May_Heatin": 103.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 273.0, "October_He": 1713.0, "November_H": 3435.0, "December_H": 4819.0, "PV_potenti": 10.27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214019917810823, 48.794134403742596, 0.0 ], [ 9.213918372763041, 48.794107668421987, 0.0 ], [ 9.214035174714548, 48.79391352310558, 0.0 ], [ 9.214087634779561, 48.793927633518422, 0.0 ], [ 9.214136688090111, 48.793940761082752, 0.0 ], [ 9.214112496312461, 48.793980911974614, 0.0 ], [ 9.214019917810823, 48.794134403742596, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001024c", "Latitude": 48.79443, "Longitude": 9.21519, "X_coordina": 3515882.79, "Y_coordina": 5406351.28, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1118.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 302.0, "Total_wall": 591.3, "Total_wa00": 0.0, "Total_outw": 870.1, "Total_shar": 213.5, "Total_roof": 334.3, "Gross_volu": 3629.1, "Is_Gross_v": "false", "Heated_vol": 3494.2, "Ridge_mean": 13.7, "Eaves_mean": 10.76, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.345, "Heated_are": 1118.1, "Mean_Uvalu": 0.47, "Specific_d": "32,9", "Specific_s": 6.8, "Total_Year": 44387.0, "January_He": 2740.0, "February_H": 1340.0, "March_Heat": 291.0, "April_Heat": 8.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 20.0, "November_H": 730.0, "December_H": 2517.0, "PV_potenti": 16.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215280466313178, 48.794376736254435, 0.0 ], [ 9.21529014086463, 48.794379325952256, 0.0 ], [ 9.21517849830731, 48.794561809664259, 0.0 ], [ 9.215076986577465, 48.794535381916425, 0.0 ], [ 9.215005587861135, 48.794516811136532, 0.0 ], [ 9.215115453521022, 48.79433244251495, 0.0 ], [ 9.215195711471553, 48.794353964150808, 0.0 ], [ 9.215280466313178, 48.794376736254435, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001024d", "Latitude": 48.79689, "Longitude": 9.21299, "X_coordina": 3515720.13, "Y_coordina": 5406625.06, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 623.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 337.2, "Total_wall": 299.0, "Total_wa00": 0.0, "Total_outw": 614.8, "Total_shar": 268.5, "Total_roof": 375.6, "Gross_volu": 2174.6, "Is_Gross_v": "false", "Heated_vol": 1949.0, "Ridge_mean": 8.2, "Eaves_mean": 4.61, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.482, "Heated_are": 623.7, "Mean_Uvalu": 0.49, "Specific_d": "32,9", "Specific_s": 13.0, "Total_Year": 28609.0, "January_He": 2719.0, "February_H": 1415.0, "March_Heat": 392.0, "April_Heat": 16.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 46.0, "November_H": 951.0, "December_H": 2576.0, "PV_potenti": 19.64 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212779246148759, 48.796915969714597, 0.0 ], [ 9.212775841851968, 48.796915616310351, 0.0 ], [ 9.212777717743727, 48.796908598809686, 0.0 ], [ 9.212780986309347, 48.796909042388172, 0.0 ], [ 9.212784198210166, 48.796896087466401, 0.0 ], [ 9.212789554036721, 48.796875125389612, 0.0 ], [ 9.212786149742623, 48.796874771985685, 0.0 ], [ 9.212787890661476, 48.796868024504754, 0.0 ], [ 9.212791158844231, 48.796868378160141, 0.0 ], [ 9.212799986609035, 48.796831583127336, 0.0 ], [ 9.212849282683841, 48.796837157208728, 0.0 ], [ 9.212848475148924, 48.796839316865814, 0.0 ], [ 9.212858007471358, 48.796840378329719, 0.0 ], [ 9.212858542403819, 48.796838129252905, 0.0 ], [ 9.212894357050878, 48.796842199532385, 0.0 ], [ 9.212893958230802, 48.796844448357746, 0.0 ], [ 9.212902809620473, 48.796845421153201, 0.0 ], [ 9.212903617153156, 48.796843261495738, 0.0 ], [ 9.212937389003153, 48.7968470657678, 0.0 ], [ 9.212936854074123, 48.79684931484497, 0.0 ], [ 9.212946658621991, 48.796850375798201, 0.0 ], [ 9.212947193931186, 48.796848216643795, 0.0 ], [ 9.212978378159001, 48.796851665994467, 0.0 ], [ 9.212977707120892, 48.796853915323553, 0.0 ], [ 9.212987103337923, 48.796854977028481, 0.0 ], [ 9.212987774375627, 48.796852727699353, 0.0 ], [ 9.213019367703003, 48.796856356129368, 0.0 ], [ 9.213018696285951, 48.79685851553586, 0.0 ], [ 9.213030407531724, 48.796859842725681, 0.0 ], [ 9.213030942837428, 48.796857683570884, 0.0 ], [ 9.213063080614489, 48.796861310981797, 0.0 ], [ 9.213062545310128, 48.796863470136692, 0.0 ], [ 9.213072486355061, 48.79686462075022, 0.0 ], [ 9.213073021278193, 48.796862371672432, 0.0 ], [ 9.213115236218531, 48.796867149429538, 0.0 ], [ 9.213114837408135, 48.79686939825563, 0.0 ], [ 9.213123416584606, 48.796870371537892, 0.0 ], [ 9.213106942700559, 48.79693361826007, 0.0 ], [ 9.213091140191178, 48.796994705572402, 0.0 ], [ 9.213084739916384, 48.796993998026743, 0.0 ], [ 9.213085410951548, 48.796991748697103, 0.0 ], [ 9.213038701574096, 48.796986349778798, 0.0 ], [ 9.213038166648138, 48.796988598856387, 0.0 ], [ 9.213029042627527, 48.796987536652132, 0.0 ], [ 9.213029577553888, 48.7969852875746, 0.0 ], [ 9.212998120256053, 48.796981658895874, 0.0 ], [ 9.212997585328326, 48.796983907973264, 0.0 ], [ 9.212987644261522, 48.796982757353341, 0.0 ], [ 9.212988315300885, 48.796980508024248, 0.0 ], [ 9.212955087802309, 48.796976702760617, 0.0 ], [ 9.212954416761511, 48.796978952089525, 0.0 ], [ 9.21294610979214, 48.796977978291352, 0.0 ], [ 9.212946644722107, 48.796975729214175, 0.0 ], [ 9.212912191468153, 48.796971746357649, 0.0 ], [ 9.212911520425504, 48.796973995686301, 0.0 ], [ 9.21290348568013, 48.796973021381788, 0.0 ], [ 9.212904156723118, 48.796970772053172, 0.0 ], [ 9.212869159031225, 48.796966790190289, 0.0 ], [ 9.212868623717439, 48.79696894934429, 0.0 ], [ 9.212862223448997, 48.79696824178626, 0.0 ], [ 9.212862758382609, 48.79696599270946, 0.0 ], [ 9.212828305141873, 48.79696200982783, 0.0 ], [ 9.212827497984451, 48.796964259407545, 0.0 ], [ 9.212818782306103, 48.796963196431996, 0.0 ], [ 9.212819317621967, 48.796961037278223, 0.0 ], [ 9.212774786839896, 48.796955814073954, 0.0 ], [ 9.212774660616168, 48.796958152318723, 0.0 ], [ 9.21276553660657, 48.796957090093585, 0.0 ], [ 9.212767009111461, 48.796951242344186, 0.0 ], [ 9.212770277299477, 48.796951596000149, 0.0 ], [ 9.212779246148759, 48.796915969714597, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001024f", "Latitude": 48.79391, "Longitude": 9.21361, "X_coordina": 3515766.83, "Y_coordina": 5406293.42, "LOD": "LOD2", "Year_of_co": 1948, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 542.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 364.6, "Total_wall": 228.5, "Total_wa00": 0.0, "Total_outw": 699.7, "Total_shar": 144.1, "Total_roof": 390.5, "Gross_volu": 1209.3, "Is_Gross_v": "false", "Heated_vol": 1209.3, "Ridge_mean": 4.1, "Eaves_mean": 4.09, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.813, "Heated_are": 542.4, "Mean_Uvalu": 0.34, "Specific_d": "32,9", "Specific_s": 7.2, "Total_Year": 21716.0, "January_He": 1364.0, "February_H": 717.0, "March_Heat": 175.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 12.0, "November_H": 376.0, "December_H": 1245.0, "PV_potenti": 20.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213812582508858, 48.793802791054397, 0.0 ], [ 9.213804442334247, 48.793808920970086, 0.0 ], [ 9.213403922855422, 48.794105692242255, 0.0 ], [ 9.213363398331905, 48.794081757737345, 0.0 ], [ 9.213322191424304, 48.794057374864281, 0.0 ], [ 9.213731256812938, 48.793753843745705, 0.0 ], [ 9.213772738548505, 48.793778855428634, 0.0 ], [ 9.213812582508858, 48.793802791054397, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010251", "Latitude": 48.7959, "Longitude": 9.21369, "X_coordina": 3515772.09, "Y_coordina": 5406514.48, "LOD": "LOD2", "Year_of_co": 1942, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 474.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 174.5, "Total_wall": 276.0, "Total_wa00": 0.0, "Total_outw": 446.5, "Total_shar": 244.9, "Total_roof": 175.3, "Gross_volu": 1306.7, "Is_Gross_v": "false", "Heated_vol": 1222.9, "Ridge_mean": 8.0, "Eaves_mean": 7.01, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.479, "Heated_are": 474.7, "Mean_Uvalu": 0.47, "Specific_d": "32,9", "Specific_s": 3.5, "Total_Year": 17245.0, "January_He": 667.0, "February_H": 223.0, "March_Heat": 31.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 2.0, "November_H": 109.0, "December_H": 614.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213705090609583, 48.795924916692535, 0.0 ], [ 9.213681375595497, 48.796013535381633, 0.0 ], [ 9.213565898649245, 48.796000350980265, 0.0 ], [ 9.213589473171497, 48.795910653492861, 0.0 ], [ 9.213612777684752, 48.795821496041285, 0.0 ], [ 9.21372920737144, 48.795834768551416, 0.0 ], [ 9.213705090609583, 48.795924916692535, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010253", "Latitude": 48.79556, "Longitude": 9.21322, "X_coordina": 3515737.41, "Y_coordina": 5406477.06, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 51.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 31.9, "Total_wall": 40.4, "Total_wa00": 0.0, "Total_outw": 62.8, "Total_shar": 114.1, "Total_roof": 31.9, "Gross_volu": 180.1, "Is_Gross_v": "false", "Heated_vol": 159.3, "Ridge_mean": 5.7, "Eaves_mean": 5.65, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.608, "Heated_are": 51.0, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 15.8, "Total_Year": 2483.0, "January_He": 254.0, "February_H": 151.0, "March_Heat": 51.0, "April_Heat": 3.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 6.0, "November_H": 103.0, "December_H": 240.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213137307096712, 48.795554674613527, 0.0 ], [ 9.213222416102903, 48.79556440865678, 0.0 ], [ 9.213210763379024, 48.795608942384916, 0.0 ], [ 9.213166506729918, 48.795603898670478, 0.0 ], [ 9.213125654299759, 48.795599208333257, 0.0 ], [ 9.213137307096712, 48.795554674613527, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010255", "Latitude": 48.79619, "Longitude": 9.21299, "X_coordina": 3515720.71, "Y_coordina": 5406546.6, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 109.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 121.1, "Total_wall": 99.0, "Total_wa00": 0.0, "Total_outw": 345.1, "Total_shar": 89.4, "Total_roof": 124.9, "Gross_volu": 329.4, "Is_Gross_v": "false", "Heated_vol": 283.9, "Ridge_mean": 3.1, "Eaves_mean": 2.35, "Storey_num": 1, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.048, "Heated_are": 109.6, "Mean_Uvalu": 0.38, "Specific_d": "32,9", "Specific_s": 13.7, "Total_Year": 5106.0, "January_He": 521.0, "February_H": 236.0, "March_Heat": 56.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 8.0, "November_H": 173.0, "December_H": 510.0, "PV_potenti": 5.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212932920592559, 48.796112848413912, 0.0 ], [ 9.213012861031011, 48.796123221632243, 0.0 ], [ 9.212994375686266, 48.796193576026219, 0.0 ], [ 9.212983660155293, 48.796234511051807, 0.0 ], [ 9.212965844618966, 48.796302346342195, 0.0 ], [ 9.212924855531035, 48.796297656187015, 0.0 ], [ 9.212885908851762, 48.796293142088821, 0.0 ], [ 9.212932920592559, 48.796112848413912, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010256", "Latitude": 48.79554, "Longitude": 9.21332, "X_coordina": 3515744.91, "Y_coordina": 5406475.26, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1024.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 374.9, "Total_wall": 478.8, "Total_wa00": 0.0, "Total_outw": 632.7, "Total_shar": 265.2, "Total_roof": 374.9, "Gross_volu": 2508.0, "Is_Gross_v": "false", "Heated_vol": 2508.0, "Ridge_mean": 6.7, "Eaves_mean": 6.69, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.49, "Heated_are": 1024.3, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 3.9, "Total_Year": 37655.0, "January_He": 1568.0, "February_H": 616.0, "March_Heat": 97.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 5.0, "November_H": 292.0, "December_H": 1415.0, "PV_potenti": 17.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213210763379024, 48.795608942384916, 0.0 ], [ 9.213222416102903, 48.79556440865678, 0.0 ], [ 9.213244748763373, 48.795566975088818, 0.0 ], [ 9.213274616255658, 48.795452626955019, 0.0 ], [ 9.213309204605203, 48.7954566094539, 0.0 ], [ 9.213322063488958, 48.795407667226655, 0.0 ], [ 9.213423512365218, 48.795419079400695, 0.0 ], [ 9.213377713115865, 48.795595864033004, 0.0 ], [ 9.2133439420725, 48.79559205988776, 0.0 ], [ 9.213312741789458, 48.795713064847504, 0.0 ], [ 9.213310699029241, 48.795712798860613, 0.0 ], [ 9.213308020714209, 48.795723145028731, 0.0 ], [ 9.21312854302934, 48.795702794907811, 0.0 ], [ 9.213150639295923, 48.79561741657141, 0.0 ], [ 9.213162622471403, 48.795618743244731, 0.0 ], [ 9.213166506729918, 48.795603898670478, 0.0 ], [ 9.213210763379024, 48.795608942384916, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010257", "Latitude": 48.79622, "Longitude": 9.21329, "X_coordina": 3515742.53, "Y_coordina": 5406550.67, "LOD": "LOD2", "Year_of_co": 1937, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 157.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 178.3, "Total_wall": 225.6, "Total_wa00": 0.0, "Total_outw": 777.7, "Total_shar": 38.1, "Total_roof": 178.3, "Gross_volu": 563.5, "Is_Gross_v": "false", "Heated_vol": 490.5, "Ridge_mean": 3.2, "Eaves_mean": 3.16, "Storey_num": 1, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 1.093, "Heated_are": 157.0, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 27.2, "Total_Year": 9429.0, "January_He": 1278.0, "February_H": 763.0, "March_Heat": 343.0, "April_Heat": 43.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 1.0, "October_He": 62.0, "November_H": 547.0, "December_H": 1236.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212983660155293, 48.796234511051807, 0.0 ], [ 9.212994375686266, 48.796193576026219, 0.0 ], [ 9.21350925744435, 48.79625233182648, 0.0 ], [ 9.213498135899588, 48.79629371726994, 0.0 ], [ 9.212983660155293, 48.796234511051807, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010258", "Latitude": 48.79424, "Longitude": 9.2153, "X_coordina": 3515890.76, "Y_coordina": 5406330.6, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 640.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 295.0, "Total_wall": 340.1, "Total_wa00": 0.0, "Total_outw": 648.1, "Total_shar": 159.0, "Total_roof": 309.9, "Gross_volu": 2296.0, "Is_Gross_v": "false", "Heated_vol": 2001.0, "Ridge_mean": 8.9, "Eaves_mean": 6.84, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.437, "Heated_are": 640.3, "Mean_Uvalu": 0.47, "Specific_d": "32,9", "Specific_s": 8.8, "Total_Year": 26671.0, "January_He": 2008.0, "February_H": 905.0, "March_Heat": 194.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 19.0, "November_H": 568.0, "December_H": 1929.0, "PV_potenti": 17.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215229933589912, 48.794145187604713, 0.0 ], [ 9.215395755176234, 48.794187771121173, 0.0 ], [ 9.215280466313178, 48.794376736254435, 0.0 ], [ 9.215195711471553, 48.794353964150808, 0.0 ], [ 9.215115453521022, 48.79433244251495, 0.0 ], [ 9.215229933589912, 48.794145187604713, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001025b", "Latitude": 48.79424, "Longitude": 9.21376, "X_coordina": 3515777.62, "Y_coordina": 5406330.32, "LOD": "LOD2", "Year_of_co": 1947, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 451.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 414.0, "Total_wall": 251.4, "Total_wa00": 0.0, "Total_outw": 474.0, "Total_shar": 150.9, "Total_roof": 459.2, "Gross_volu": 1653.9, "Is_Gross_v": "false", "Heated_vol": 1411.6, "Ridge_mean": 5.0, "Eaves_mean": 3.0, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.702, "Heated_are": 451.7, "Mean_Uvalu": 0.39, "Specific_d": "non calculated", "Specific_s": 74.1, "Total_Year": 33474.0, "January_He": 7164.0, "February_H": 5341.0, "March_Heat": 3939.0, "April_Heat": 1487.0, "May_Heatin": 182.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 2, "September_": 482.0, "October_He": 2659.0, "November_H": 5115.0, "December_H": 7097.0, "PV_potenti": 22.15 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213874229827764, 48.794377378097771, 0.0 ], [ 9.213432616205981, 48.794260307600176, 0.0 ], [ 9.213451938297478, 48.794227089993512, 0.0 ], [ 9.213471665241098, 48.794193062320858, 0.0 ], [ 9.213811497121789, 48.794284064002412, 0.0 ], [ 9.213895595998453, 48.794144632714989, 0.0 ], [ 9.21399830157088, 48.794171673590469, 0.0 ], [ 9.213874229827764, 48.794377378097771, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001025d", "Latitude": 48.79458, "Longitude": 9.21506, "X_coordina": 3515872.77, "Y_coordina": 5406368.09, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 189.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 117.5, "Total_wall": 193.9, "Total_wa00": 0.0, "Total_outw": 377.3, "Total_shar": 131.6, "Total_roof": 117.5, "Gross_volu": 590.8, "Is_Gross_v": "false", "Heated_vol": 590.8, "Ridge_mean": 5.0, "Eaves_mean": 5.03, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.726, "Heated_are": 189.1, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 15.3, "Total_Year": 9106.0, "January_He": 960.0, "February_H": 492.0, "March_Heat": 142.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 20.0, "November_H": 345.0, "December_H": 928.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215065219469029, 48.794680090898062, 0.0 ], [ 9.215019845025338, 48.7946681258681, 0.0 ], [ 9.214928687119704, 48.794644016670716, 0.0 ], [ 9.214933417756676, 48.794636274415851, 0.0 ], [ 9.215005587861135, 48.794516811136532, 0.0 ], [ 9.215076986577465, 48.794535381916425, 0.0 ], [ 9.215031312562155, 48.794612531697624, 0.0 ], [ 9.215096037674344, 48.794630035843355, 0.0 ], [ 9.215065219469029, 48.794680090898062, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0001025e", "Latitude": 48.79468, "Longitude": 9.21499, "X_coordina": 3515867.66, "Y_coordina": 5406379.64, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 159.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 101.1, "Total_wall": 178.7, "Total_wa00": 0.0, "Total_outw": 351.1, "Total_shar": 76.5, "Total_roof": 101.1, "Gross_volu": 523.8, "Is_Gross_v": "false", "Heated_vol": 499.6, "Ridge_mean": 5.2, "Eaves_mean": 5.24, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.744, "Heated_are": 159.9, "Mean_Uvalu": 0.46, "Specific_d": "32,9", "Specific_s": 19.6, "Total_Year": 8387.0, "January_He": 1006.0, "February_H": 547.0, "March_Heat": 170.0, "April_Heat": 10.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 28.0, "November_H": 401.0, "December_H": 972.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215019845025338, 48.7946681258681, 0.0 ], [ 9.215012150829732, 48.794683067544135, 0.0 ], [ 9.215019510104696, 48.794685301892962, 0.0 ], [ 9.214970046050503, 48.794767404519675, 0.0 ], [ 9.214945519073082, 48.794760885880741, 0.0 ], [ 9.214918744760711, 48.794769928205845, 0.0 ], [ 9.214877726020189, 48.794758044914943, 0.0 ], [ 9.214885018864118, 48.794744722620983, 0.0 ], [ 9.214866212163672, 48.794739092527031, 0.0 ], [ 9.214916491836824, 48.79465671865173, 0.0 ], [ 9.214929602211802, 48.794635202454167, 0.0 ], [ 9.214933417756676, 48.794636274415851, 0.0 ], [ 9.214928687119704, 48.794644016670716, 0.0 ], [ 9.215019845025338, 48.7946681258681, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010260", "Latitude": 48.79669, "Longitude": 9.2124, "X_coordina": 3515677.24, "Y_coordina": 5406601.97, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 49.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 59.1, "Total_wall": 86.4, "Total_wa00": 0.0, "Total_outw": 295.4, "Total_shar": 0.0, "Total_roof": 59.1, "Gross_volu": 214.5, "Is_Gross_v": "false", "Heated_vol": 155.5, "Ridge_mean": 3.6, "Eaves_mean": 3.63, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.106, "Heated_are": 49.8, "Mean_Uvalu": 0.27, "Specific_d": "32,9", "Specific_s": 22.1, "Total_Year": 2736.0, "January_He": 337.0, "February_H": 202.0, "March_Heat": 80.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 13.0, "November_H": 142.0, "December_H": 321.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212361818702258, 48.796761442287234, 0.0 ], [ 9.212295588126864, 48.7967424106875, 0.0 ], [ 9.212356727908315, 48.796651744973445, 0.0 ], [ 9.212424045371991, 48.796670324915901, 0.0 ], [ 9.212361818702258, 48.796761442287234, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000101f7", "Latitude": 48.79131, "Longitude": 9.203, "X_coordina": 3514988.27, "Y_coordina": 5406002.48, "LOD": "LOD2", "Year_of_co": 2010, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 628.6, "SecondaryU": "retail", "Secondar00": 99.7, "BuildingTy": "GMH", "Footprint_": 124.6, "Total_wall": 691.2, "Total_wa00": 0.0, "Total_outw": 944.7, "Total_shar": 146.2, "Total_roof": 220.3, "Gross_volu": 2364.9, "Is_Gross_v": "false", "Heated_vol": 2275.9, "Ridge_mean": 21.7, "Eaves_mean": 15.23, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 12, "Number_o00": 20, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.451, "Heated_are": 728.3, "Mean_Uvalu": 0.46, "Specific_d": "23,7", "Specific_s": 40.4, "Total_Year": 46686.0, "January_He": 7393.0, "February_H": 5080.0, "March_Heat": 3032.0, "April_Heat": 598.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 1439.0, "November_H": 4553.0, "December_H": 7262.0, "PV_potenti": 9.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203005386215736, 48.791402505334823, 0.0 ], [ 9.202911119286524, 48.791347008761107, 0.0 ], [ 9.202890765425275, 48.791362061865705, 0.0 ], [ 9.202871120458312, 48.791350406406472, 0.0 ], [ 9.202843290526896, 48.791333999410256, 0.0 ], [ 9.202935550062616, 48.79126297706096, 0.0 ], [ 9.203077704854323, 48.79134770427283, 0.0 ], [ 9.203060066070291, 48.791361044070811, 0.0 ], [ 9.203041342136162, 48.791375285015405, 0.0 ], [ 9.203005386215736, 48.791402505334823, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000101f8", "Latitude": 48.79136, "Longitude": 9.20314, "X_coordina": 3514998.05, "Y_coordina": 5406007.47, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 23.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 29.2, "Total_wall": 29.6, "Total_wa00": 0.0, "Total_outw": 89.5, "Total_shar": 78.2, "Total_roof": 29.2, "Gross_volu": 78.4, "Is_Gross_v": "false", "Heated_vol": 73.9, "Ridge_mean": 2.7, "Eaves_mean": 2.7, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.143, "Heated_are": 23.7, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20308421823116, 48.791342926835306, 0.0 ], [ 9.203146016036365, 48.79137905705052, 0.0 ], [ 9.203102188365646, 48.791411686702496, 0.0 ], [ 9.203041342136162, 48.791375285015405, 0.0 ], [ 9.203077704854323, 48.79134770427283, 0.0 ], [ 9.20308421823116, 48.791342926835306, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00010194", "Latitude": 48.79051, "Longitude": 9.20987, "X_coordina": 3515493.08, "Y_coordina": 5405914.59, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 711.8, "SecondaryU": "office and administration", "Secondar00": 172.7, "BuildingTy": "MFH", "Footprint_": 215.8, "Total_wall": 778.7, "Total_wa00": 0.0, "Total_outw": 1098.4, "Total_shar": 85.4, "Total_roof": 215.8, "Gross_volu": 2764.1, "Is_Gross_v": "false", "Heated_vol": 2764.1, "Ridge_mean": 12.8, "Eaves_mean": 12.82, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 11, "Number_o00": 20, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.438, "Heated_are": 884.5, "Mean_Uvalu": 0.41, "Specific_d": "15,6", "Specific_s": 45.3, "Total_Year": 53879.0, "January_He": 9274.0, "February_H": 6858.0, "March_Heat": 4748.0, "April_Heat": 1405.0, "May_Heatin": 81.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 226.0, "October_He": 2438.0, "November_H": 6061.0, "December_H": 8990.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20982945188449, 48.79042737148167, 0.0 ], [ 9.20983136769207, 48.790429885852404, 0.0 ], [ 9.209866413511071, 48.790479190059891, 0.0 ], [ 9.209877424721308, 48.790476202513247, 0.0 ], [ 9.209887008282918, 48.790489853437634, 0.0 ], [ 9.209900737242034, 48.790485871775651, 0.0 ], [ 9.209914361237834, 48.790489353963999, 0.0 ], [ 9.209930376477965, 48.79051144598143, 0.0 ], [ 9.20992469805176, 48.790520448694842, 0.0 ], [ 9.209911785647789, 48.790524428871272, 0.0 ], [ 9.209920283853327, 48.790538891083727, 0.0 ], [ 9.209909544819599, 48.790541878138313, 0.0 ], [ 9.209944602798014, 48.790594059854769, 0.0 ], [ 9.209819828629911, 48.790632684643214, 0.0 ], [ 9.209779024070873, 48.790573139620484, 0.0 ], [ 9.209783915954446, 48.79057133223683, 0.0 ], [ 9.209710112416902, 48.790463738159488, 0.0 ], [ 9.209781607318305, 48.790441936350547, 0.0 ], [ 9.20982945188449, 48.79042737148167, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000100ba", "Latitude": 48.79482, "Longitude": 9.21241, "X_coordina": 3515678.14, "Y_coordina": 5406394.38, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1031.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 268.6, "Total_wall": 863.3, "Total_wa00": 0.0, "Total_outw": 1123.0, "Total_shar": 214.0, "Total_roof": 268.6, "Gross_volu": 3222.6, "Is_Gross_v": "false", "Heated_vol": 3222.6, "Ridge_mean": 13.3, "Eaves_mean": 13.27, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 13, "Number_o00": 20, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.435, "Heated_are": 1031.2, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 40.4, "Total_Year": 58042.0, "January_He": 9824.0, "February_H": 7203.0, "March_Heat": 4839.0, "April_Heat": 1239.0, "May_Heatin": 42.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 159.0, "October_He": 2438.0, "November_H": 6444.0, "December_H": 9517.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212440149445474, 48.79493971668964, 0.0 ], [ 9.212270262232941, 48.794933555459203, 0.0 ], [ 9.212289044623704, 48.794739915424195, 0.0 ], [ 9.212457980727077, 48.794746617923089, 0.0 ], [ 9.212440149445474, 48.79493971668964, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000fd7b", "Latitude": 48.79025, "Longitude": 9.20839, "X_coordina": 3515384.0000000005, "Y_coordina": 5405885.69, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 813.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 224.7, "Total_wall": 517.8, "Total_wa00": 0.0, "Total_outw": 788.6, "Total_shar": 135.5, "Total_roof": 224.7, "Gross_volu": 2127.4, "Is_Gross_v": "false", "Heated_vol": 2127.4, "Ridge_mean": 9.5, "Eaves_mean": 9.47, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 10, "Number_o00": 18, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.455, "Heated_are": 813.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 35.2, "Total_Year": 41510.0, "January_He": 7273.0, "February_H": 4997.0, "March_Heat": 2857.0, "April_Heat": 412.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 1330.0, "November_H": 4591.0, "December_H": 7115.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208407723273796, 48.790176818178033, 0.0 ], [ 9.20841953483146, 48.790367075192798, 0.0 ], [ 9.208276923126583, 48.790370750304106, 0.0 ], [ 9.208264147176035, 48.790177527539321, 0.0 ], [ 9.208278027902782, 48.790177322588292, 0.0 ], [ 9.208278306415302, 48.790178850786226, 0.0 ], [ 9.208407579360621, 48.790174930042312, 0.0 ], [ 9.208407723273796, 48.790176818178033, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000fca8", "Latitude": 48.78871, "Longitude": 9.2138, "X_coordina": 3515782.57, "Y_coordina": 5405715.48, "LOD": "LOD2", "Year_of_co": 1947, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 100.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.8, "Total_wall": 57.5, "Total_wa00": 0.0, "Total_outw": 127.7, "Total_shar": 223.3, "Total_roof": 57.4, "Gross_volu": 360.0, "Is_Gross_v": "false", "Heated_vol": 313.2, "Ridge_mean": 9.2, "Eaves_mean": 6.15, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.48, "Heated_are": 100.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.6, "Total_Year": 6253.0, "January_He": 1153.0, "February_H": 813.0, "March_Heat": 484.0, "April_Heat": 87.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 11.0, "October_He": 243.0, "November_H": 743.0, "December_H": 1130.0, "PV_potenti": 1.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213738455243922, 48.788751559753877, 0.0 ], [ 9.213691934367439, 48.788724668991229, 0.0 ], [ 9.213731790981429, 48.78868844571975, 0.0 ], [ 9.213781425846488, 48.788711553892519, 0.0 ], [ 9.213827106155659, 48.788732780989868, 0.0 ], [ 9.213781156128091, 48.788776209497684, 0.0 ], [ 9.213738455243922, 48.788751559753877, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000fc82", "Latitude": 48.78827, "Longitude": 9.21024, "X_coordina": 3515520.8, "Y_coordina": 5405665.13, "LOD": "LOD2", "Year_of_co": 2001, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 163.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 58.9, "Total_wall": 181.7, "Total_wa00": 0.0, "Total_outw": 291.9, "Total_shar": 109.5, "Total_roof": 83.0, "Gross_volu": 553.2, "Is_Gross_v": "false", "Heated_vol": 512.0, "Ridge_mean": 11.5, "Eaves_mean": 6.52, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.612, "Heated_are": 163.8, "Mean_Uvalu": 0.57, "Specific_d": "15,8", "Specific_s": 62.5, "Total_Year": 12837.0, "January_He": 2431.0, "February_H": 1737.0, "March_Heat": 1149.0, "April_Heat": 322.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 48.0, "October_He": 569.0, "November_H": 1565.0, "December_H": 2401.0, "PV_potenti": 3.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210244580126645, 48.788286881336049, 0.0 ], [ 9.210243916489764, 48.788323481475743, 0.0 ], [ 9.210231667834082, 48.788323323989644, 0.0 ], [ 9.21016280251202, 48.788322280678734, 0.0 ], [ 9.210145246056237, 48.788322042946163, 0.0 ], [ 9.210146181564779, 48.788285352387277, 0.0 ], [ 9.210146981359891, 48.788248751999454, 0.0 ], [ 9.210160727336598, 48.788248996685702, 0.0 ], [ 9.21022959293404, 48.788250129920996, 0.0 ], [ 9.210245244138299, 48.788250371119105, 0.0 ], [ 9.210244580126645, 48.788286881336049, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000fc27", "Latitude": 48.78789, "Longitude": 9.21071, "X_coordina": 3515555.59, "Y_coordina": 5405623.01, "LOD": "LOD2", "Year_of_co": 1958, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 165.5, "SecondaryU": "retail", "Secondar00": 52.1, "BuildingTy": "MFH", "Footprint_": 65.1, "Total_wall": 216.2, "Total_wa00": 0.0, "Total_outw": 343.1, "Total_shar": 140.3, "Total_roof": 102.3, "Gross_volu": 744.8, "Is_Gross_v": "false", "Heated_vol": 679.8, "Ridge_mean": 14.2, "Eaves_mean": 8.73, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 3, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.545, "Heated_are": 217.5, "Mean_Uvalu": 0.5, "Specific_d": "29,5", "Specific_s": 47.4, "Total_Year": 16740.0, "January_He": 2649.0, "February_H": 1743.0, "March_Heat": 994.0, "April_Heat": 211.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 28.0, "October_He": 474.0, "November_H": 1576.0, "December_H": 2633.0, "PV_potenti": 5.13 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210657649729525, 48.787938841296956, 0.0 ], [ 9.210596782438195, 48.787930230027094, 0.0 ], [ 9.210618559805548, 48.787865984705121, 0.0 ], [ 9.210679564991613, 48.787875045329613, 0.0 ], [ 9.210737574410924, 48.787883661785628, 0.0 ], [ 9.210715521249385, 48.787947008397907, 0.0 ], [ 9.210657649729525, 48.787938841296956, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000f8fb", "Latitude": 48.79156, "Longitude": 9.21304, "X_coordina": 3515725.24, "Y_coordina": 5406032.34, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 472.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 131.1, "Total_wall": 236.2, "Total_wa00": 0.0, "Total_outw": 408.9, "Total_shar": 337.8, "Total_roof": 193.7, "Gross_volu": 1607.2, "Is_Gross_v": "false", "Heated_vol": 1476.1, "Ridge_mean": 14.9, "Eaves_mean": 9.6, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 6, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.366, "Heated_are": 472.3, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 37.4, "Total_Year": 25155.0, "January_He": 4340.0, "February_H": 3101.0, "March_Heat": 1902.0, "April_Heat": 343.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 916.0, "November_H": 2795.0, "December_H": 4232.0, "PV_potenti": 8.61 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213087653273663, 48.791543275818867, 0.0 ], [ 9.213016543460245, 48.791656081650807, 0.0 ], [ 9.212959043631832, 48.791640361439939, 0.0 ], [ 9.212895276161818, 48.791622944238739, 0.0 ], [ 9.21296638582001, 48.791510048557683, 0.0 ], [ 9.213029472308447, 48.791527377055957, 0.0 ], [ 9.213087653273663, 48.791543275818867, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000f77f", "Latitude": 48.78837, "Longitude": 9.21158, "X_coordina": 3515619.35, "Y_coordina": 5405676.82, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 143.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 47.0, "Total_wall": 126.1, "Total_wa00": 0.0, "Total_outw": 217.5, "Total_shar": 193.9, "Total_roof": 68.4, "Gross_volu": 496.7, "Is_Gross_v": "false", "Heated_vol": 449.7, "Ridge_mean": 12.6, "Eaves_mean": 8.51, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.516, "Heated_are": 143.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 48.3, "Total_Year": 9227.0, "January_He": 1698.0, "February_H": 1190.0, "March_Heat": 741.0, "April_Heat": 167.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 23.0, "October_He": 379.0, "November_H": 1084.0, "December_H": 1660.0, "PV_potenti": 3.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211584659742728, 48.78841958226446, 0.0 ], [ 9.211532659357884, 48.78841617077007, 0.0 ], [ 9.211480522891961, 48.788412759502101, 0.0 ], [ 9.211483833272196, 48.788390901974751, 0.0 ], [ 9.211489002780143, 48.788358070347016, 0.0 ], [ 9.211542228271325, 48.788361569534366, 0.0 ], [ 9.211593139518943, 48.788364893101949, 0.0 ], [ 9.211584659742728, 48.78841958226446, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000f6a5", "Latitude": 48.78842, "Longitude": 9.21394, "X_coordina": 3515792.81, "Y_coordina": 5405682.7, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 602.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 169.2, "Total_wall": 436.9, "Total_wa00": 0.0, "Total_outw": 686.7, "Total_shar": 152.7, "Total_roof": 215.9, "Gross_volu": 1913.1, "Is_Gross_v": "false", "Heated_vol": 1883.2, "Ridge_mean": 13.2, "Eaves_mean": 9.58, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.434, "Heated_are": 602.6, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 43.7, "Total_Year": 35881.0, "January_He": 6460.0, "February_H": 4567.0, "March_Heat": 2801.0, "April_Heat": 534.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1409.0, "November_H": 4185.0, "December_H": 6299.0, "PV_potenti": 10.57 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213840467014331, 48.788354087677227, 0.0 ], [ 9.213907425689705, 48.788354772637391, 0.0 ], [ 9.213965674360137, 48.788355383818086, 0.0 ], [ 9.213955217396798, 48.788520593000371, 0.0 ], [ 9.21382973631771, 48.78851902758543, 0.0 ], [ 9.213840467014331, 48.788354087677227, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000f64b", "Latitude": 48.79227, "Longitude": 9.19819, "X_coordina": 3514633.93, "Y_coordina": 5406107.73, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 310.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 98.3, "Total_wall": 255.8, "Total_wa00": 0.0, "Total_outw": 399.1, "Total_shar": 169.7, "Total_roof": 176.9, "Gross_volu": 996.6, "Is_Gross_v": "false", "Heated_vol": 971.7, "Ridge_mean": 12.8, "Eaves_mean": 6.31, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 4, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.54, "Heated_are": 310.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 47.7, "Total_Year": 19748.0, "January_He": 3657.0, "February_H": 2551.0, "March_Heat": 1560.0, "April_Heat": 342.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 754.0, "November_H": 2290.0, "December_H": 3612.0, "PV_potenti": 6.84 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198240769835961, 48.792268587312314, 0.0 ], [ 9.198219872643955, 48.792284359913452, 0.0 ], [ 9.19821591763642, 48.792282298478597, 0.0 ], [ 9.198172356408163, 48.792314476173708, 0.0 ], [ 9.198130694842277, 48.792345211806264, 0.0 ], [ 9.198119703058698, 48.792353413764339, 0.0 ], [ 9.198081509016314, 48.792331538112535, 0.0 ], [ 9.198042633451832, 48.792309393849273, 0.0 ], [ 9.198160831207732, 48.792221784783223, 0.0 ], [ 9.198199981786939, 48.792244647922359, 0.0 ], [ 9.198240769835961, 48.792268587312314, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000f2bd", "Latitude": 48.79092, "Longitude": 9.19357, "X_coordina": 3514295.13, "Y_coordina": 5405957.26, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 6.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 52.6, "Total_wall": 0.0, "Total_wa00": 0.0, "Total_outw": 0.0, "Total_shar": 0.0, "Total_roof": 81.9, "Gross_volu": 75.8, "Is_Gross_v": "false", "Heated_vol": 23.2, "Ridge_mean": 4.3, "Eaves_mean": 0.0, "Storey_num": 1, "Average_St": 3.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.774, "Heated_are": 6.1, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 3.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193548623003061, 48.790985823912195, 2.953432858397008 ], [ 9.193459369696917, 48.79095710841375, 2.953432858397008 ], [ 9.193502451251369, 48.790898810489168, 2.953432858397008 ], [ 9.193591704824515, 48.790927615877713, 2.953432858397008 ], [ 9.193548623003061, 48.790985823912195, 2.953432858397008 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000f2c0", "Latitude": 48.79097, "Longitude": 9.19345, "X_coordina": 3514286.26, "Y_coordina": 5405962.22, "LOD": "LOD2", "Year_of_co": 2000, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 331.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 277.7, "Total_wall": 323.7, "Total_wa00": 0.0, "Total_outw": 793.5, "Total_shar": 3.4, "Total_roof": 326.8, "Gross_volu": 1069.0, "Is_Gross_v": "false", "Heated_vol": 1034.4, "Ridge_mean": 7.8, "Eaves_mean": 7.77, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.879, "Heated_are": 331.0, "Mean_Uvalu": 0.55, "Specific_d": "24,8", "Specific_s": 85.1, "Total_Year": 36408.0, "January_He": 6376.0, "February_H": 4577.0, "March_Heat": 3180.0, "April_Heat": 1153.0, "May_Heatin": 192.0, "June_Heati": 12, "July_Heati": 2, "August_Hea": 3, "September_": 331.0, "October_He": 1848.0, "November_H": 4211.0, "December_H": 6301.0, "PV_potenti": 14.44 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193548986826874, 48.791059182982586, 0.0 ], [ 9.193527595466351, 48.791088264261042, 0.0 ], [ 9.193438205895061, 48.791059548975689, 0.0 ], [ 9.193459597295105, 48.791030467713647, 0.0 ], [ 9.193417219124496, 48.79101687051277, 0.0 ], [ 9.193194835484444, 48.790945304934134, 0.0 ], [ 9.193238702714543, 48.790885971668374, 0.0 ], [ 9.193371151782014, 48.790928642893483, 0.0 ], [ 9.193392543165448, 48.790899561643243, 0.0 ], [ 9.193480842629254, 48.790928009025528, 0.0 ], [ 9.193459315535454, 48.790957180443634, 0.0 ], [ 9.193548568841702, 48.790985895942129, 0.0 ], [ 9.193592582239646, 48.791000029887357, 0.0 ], [ 9.193571055179975, 48.791029201325905, 0.0 ], [ 9.193615204717398, 48.791043335033542, 0.0 ], [ 9.193593136038487, 48.791073226775552, 0.0 ], [ 9.193548986826874, 48.791059182982586, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000f09b", "Latitude": 48.78855, "Longitude": 9.20436, "X_coordina": 3515088.48, "Y_coordina": 5405695.15, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 9337.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 2109.1, "Total_wall": 6079.0, "Total_wa00": 0.0, "Total_outw": 8041.0, "Total_shar": 0.0, "Total_roof": 2109.1, "Gross_volu": 30425.3, "Is_Gross_v": "false", "Heated_vol": 29178.0, "Ridge_mean": 18.9, "Eaves_mean": 18.93, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 150, "Number_o00": 242, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.346, "Heated_are": 9337.0, "Mean_Uvalu": 0.37, "Specific_d": "15,8", "Specific_s": 30.7, "Total_Year": 434743.00000000006, "January_He": 69804.0, "February_H": 50012.0, "March_Heat": 32802.0, "April_Heat": 7625.0, "May_Heatin": 204.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 639.0, "October_He": 14335.0, "November_H": 43497.0, "December_H": 67927.0, "PV_potenti": 96.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204158972538096, 48.788389912752599, 0.0 ], [ 9.204160397621749, 48.788405736789173, 0.0 ], [ 9.204174141060745, 48.788405352728418, 0.0 ], [ 9.204176123270841, 48.788424323104834, 0.0 ], [ 9.204162515914831, 48.78842470692458, 0.0 ], [ 9.204163668824226, 48.788440531443555, 0.0 ], [ 9.204177276184499, 48.788440147623668, 0.0 ], [ 9.204178856334451, 48.788460647414894, 0.0 ], [ 9.204165656868609, 48.788460940588138, 0.0 ], [ 9.204166672961954, 48.788476585502231, 0.0 ], [ 9.204180688596816, 48.788476200958115, 0.0 ], [ 9.204182000220944, 48.788497600461817, 0.0 ], [ 9.204169208280872, 48.788497713065588, 0.0 ], [ 9.204170831112238, 48.788528733848288, 0.0 ], [ 9.204127557908024, 48.788529529951035, 0.0 ], [ 9.204132395735765, 48.788581497245893, 0.0 ], [ 9.204145730592451, 48.788581023989146, 0.0 ], [ 9.204147170997841, 48.788600624791528, 0.0 ], [ 9.204132882786087, 48.788600919891081, 0.0 ], [ 9.204133764607272, 48.788617014661355, 0.0 ], [ 9.204148325730475, 48.788616898925198, 0.0 ], [ 9.204149767232273, 48.788636769496421, 0.0 ], [ 9.204136295177893, 48.788636973225863, 0.0 ], [ 9.204137177730336, 48.788653247842035, 0.0 ], [ 9.204151464497803, 48.788652593049903, 0.0 ], [ 9.204152499194555, 48.788672824036752, 0.0 ], [ 9.204139027130545, 48.788673027766542, 0.0 ], [ 9.204139459835691, 48.788679051883996, 0.0 ], [ 9.204140319410177, 48.788689661350851, 0.0 ], [ 9.204154605458358, 48.788688826712331, 0.0 ], [ 9.204155910511078, 48.788708607601471, 0.0 ], [ 9.204142030170745, 48.788708812055432, 0.0 ], [ 9.204143183445256, 48.788724726496824, 0.0 ], [ 9.204157334873527, 48.788724251791194, 0.0 ], [ 9.204158359724843, 48.788742054856691, 0.0 ], [ 9.20423755294555, 48.788739306645894, 0.0 ], [ 9.204236255158534, 48.788721324217846, 0.0 ], [ 9.204255441876173, 48.788720840569844, 0.0 ], [ 9.204278982709843, 48.78872016934767, 0.0 ], [ 9.204331371113954, 48.788718637625706, 0.0 ], [ 9.204404851109272, 48.788716528902611, 0.0 ], [ 9.204471119115526, 48.788714612785519, 0.0 ], [ 9.20446999313867, 48.788705442572578, 0.0 ], [ 9.204470401368859, 48.788705432855373, 0.0 ], [ 9.204475435964307, 48.78870525306111, 0.0 ], [ 9.204515712434217, 48.788703742760688, 0.0 ], [ 9.204555988901665, 48.788702232446184, 0.0 ], [ 9.204555834537759, 48.788697736537927, 0.0 ], [ 9.204559236028929, 48.788697550648521, 0.0 ], [ 9.20456630291585, 48.78876210327487, 0.0 ], [ 9.204567855454927, 48.788775768911449, 0.0 ], [ 9.204613983078154, 48.788774068335243, 0.0 ], [ 9.204651402093591, 48.788772652988172, 0.0 ], [ 9.204708551097966, 48.788770483168925, 0.0 ], [ 9.20478461391753, 48.7887676502232, 0.0 ], [ 9.204833462575129, 48.788765764873034, 0.0 ], [ 9.204858635392389, 48.788764820858688, 0.0 ], [ 9.204869248875287, 48.788764442282989, 0.0 ], [ 9.204867965504405, 48.788750056782412, 0.0 ], [ 9.204872455710124, 48.788749868946923, 0.0 ], [ 9.204884158649813, 48.788883384742483, 0.0 ], [ 9.204480443911242, 48.788899479247384, 0.0 ], [ 9.204475183541375, 48.788844095621656, 0.0 ], [ 9.204490151901, 48.788843709348278, 0.0 ], [ 9.204486596575469, 48.788806037653373, 0.0 ], [ 9.204263851067827, 48.788814436171741, 0.0 ], [ 9.204265989126704, 48.788838262145767, 0.0 ], [ 9.20423918282502, 48.788839119004081, 0.0 ], [ 9.204167609717548, 48.788841673858961, 0.0 ], [ 9.203945677253305, 48.788849261007975, 0.0 ], [ 9.203756266064488, 48.78885580103217, 0.0 ], [ 9.203746198824435, 48.788722192304085, 0.0 ], [ 9.203743745152705, 48.788687576040488, 0.0 ], [ 9.203932747079724, 48.788680946837722, 0.0 ], [ 9.203931041136695, 48.788662965128871, 0.0 ], [ 9.203945465091701, 48.788662579890293, 0.0 ], [ 9.203943764246466, 48.788645857103646, 0.0 ], [ 9.203929203843105, 48.78864615266, 0.0 ], [ 9.203928447972837, 48.788627539802995, 0.0 ], [ 9.203942327198511, 48.788627065605802, 0.0 ], [ 9.203940490266895, 48.788610343059993, 0.0 ], [ 9.20392674640572, 48.788610637169981, 0.0 ], [ 9.20392516635347, 48.788590137375664, 0.0 ], [ 9.203925574546398, 48.788590118668097, 0.0 ], [ 9.20393890875147, 48.788589483573872, 0.0 ], [ 9.203937606702363, 48.788570422065753, 0.0 ], [ 9.203993535450714, 48.788569423769438, 0.0 ], [ 9.203989200205154, 48.78850711435841, 0.0 ], [ 9.203959945212814, 48.7885081553367, 0.0 ], [ 9.203958774508669, 48.788487924588431, 0.0 ], [ 9.203971973253953, 48.78848745159285, 0.0 ], [ 9.203970408494298, 48.788470728565052, 0.0 ], [ 9.203957210117805, 48.788471291483447, 0.0 ], [ 9.203955766510354, 48.788450881371062, 0.0 ], [ 9.203969510327763, 48.788450587257692, 0.0 ], [ 9.203967948850135, 48.788434673536827, 0.0 ], [ 9.203954341854088, 48.788435147254994, 0.0 ], [ 9.203953041625413, 48.78841653536157, 0.0 ], [ 9.203966241080938, 48.788416242212683, 0.0 ], [ 9.203965085318616, 48.788399698307487, 0.0 ], [ 9.203952294131684, 48.788399990733176, 0.0 ], [ 9.203950992811469, 48.788381109070585, 0.0 ], [ 9.203963784358054, 48.788380906568079, 0.0 ], [ 9.203962075863396, 48.788362295397697, 0.0 ], [ 9.203944658787604, 48.788362865786532, 0.0 ], [ 9.203829541824735, 48.788366396776119, 0.0 ], [ 9.203821208786678, 48.788257783750048, 0.0 ], [ 9.203937139112986, 48.788253531939041, 0.0 ], [ 9.203935981906575, 48.788236628341025, 0.0 ], [ 9.203967279149717, 48.788235853522536, 0.0 ], [ 9.203967452046172, 48.788244935505574, 0.0 ], [ 9.203991128749122, 48.788244264101479, 0.0 ], [ 9.203990410768865, 48.788235003236714, 0.0 ], [ 9.204021163295016, 48.788234139444853, 0.0 ], [ 9.204021335836639, 48.788243131504785, 0.0 ], [ 9.204051135024386, 48.788242089546571, 0.0 ], [ 9.20405156188165, 48.788246674896676, 0.0 ], [ 9.204170349273475, 48.788242237941212, 0.0 ], [ 9.20417192540125, 48.788261748580155, 0.0 ], [ 9.204185804158916, 48.788261184430773, 0.0 ], [ 9.204187378469104, 48.788280245454359, 0.0 ], [ 9.204173362159187, 48.788280450153195, 0.0 ], [ 9.204174108994007, 48.788296814934363, 0.0 ], [ 9.204188261031439, 48.788296520071114, 0.0 ], [ 9.204190247255697, 48.788316479600745, 0.0 ], [ 9.204175824861037, 48.788317224561844, 0.0 ], [ 9.204176842048955, 48.788333139245282, 0.0 ], [ 9.204190993002042, 48.788332574612653, 0.0 ], [ 9.204193115681658, 48.788352623823812, 0.0 ], [ 9.204178826810894, 48.788352739082946, 0.0 ], [ 9.204179981182987, 48.78836892329398, 0.0 ], [ 9.204193589253483, 48.788368719318221, 0.0 ], [ 9.20419598411182, 48.78838876804658, 0.0 ], [ 9.204158972538096, 48.788389912752599, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000f09c", "Latitude": 48.78895, "Longitude": 9.20472, "X_coordina": 3515114.92, "Y_coordina": 5405739.95, "LOD": "LOD2", "Year_of_co": 1968, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 121.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 132.9, "Total_wall": 117.5, "Total_wa00": 0.0, "Total_outw": 397.0, "Total_shar": 0.0, "Total_roof": 132.9, "Gross_volu": 280.3, "Is_Gross_v": "false", "Heated_vol": 280.3, "Ridge_mean": 2.1, "Eaves_mean": 2.11, "Storey_num": 1, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.367, "Heated_are": 121.4, "Mean_Uvalu": 0.32, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204524731305384, 48.788947239979599, 0.0 ], [ 9.204819048374324, 48.788935746203187, 0.0 ], [ 9.204824172676496, 48.788991040130753, 0.0 ], [ 9.204529580913526, 48.789001994866119, 0.0 ], [ 9.204524731305384, 48.788947239979599, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ee7b", "Latitude": 48.7913, "Longitude": 9.20188, "X_coordina": 3514905.79, "Y_coordina": 5406001.35, "LOD": "LOD2", "Year_of_co": 2013, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 16459.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 2640.9, "Total_wall": 4953.9, "Total_wa00": 0.0, "Total_outw": 6189.9, "Total_shar": 153.6, "Total_roof": 2640.9, "Gross_volu": 54077.4, "Is_Gross_v": "false", "Heated_vol": 51436.5, "Ridge_mean": 29.7, "Eaves_mean": 29.69, "Storey_num": 11, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.193, "Heated_are": 16459.7, "Mean_Uvalu": 0.37, "Specific_d": "14,6", "Specific_s": 47.4, "Total_Year": 1021357.0, "January_He": 166887.0, "February_H": 130107.0, "March_Heat": 100440.0, "April_Heat": 44099.0, "May_Heatin": 6831.0, "June_Heati": 256, "July_Heati": 28, "August_Hea": 54, "September_": 10508.0, "October_He": 51550.0, "November_H": 110588.0, "December_H": 159533.0, "PV_potenti": 123.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201334648608418, 48.791366321699492, 0.0 ], [ 9.201378477027159, 48.791333602794637, 0.0 ], [ 9.201447408262695, 48.791282135852271, 0.0 ], [ 9.201523395449884, 48.791225440951294, 0.0 ], [ 9.201806988803572, 48.791013803681068, 0.0 ], [ 9.201876562200503, 48.79105477682743, 0.0 ], [ 9.201959777369243, 48.79110372920919, 0.0 ], [ 9.202009570966252, 48.791065424337162, 0.0 ], [ 9.202341068985501, 48.79126042619864, 0.0 ], [ 9.201926802117766, 48.7915686021623, 0.0 ], [ 9.201900062949445, 48.791552642644334, 0.0 ], [ 9.201854606930164, 48.791586713453313, 0.0 ], [ 9.201789610965283, 48.791635296185554, 0.0 ], [ 9.201334648608418, 48.791366321699492, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ee7c", "Latitude": 48.79092, "Longitude": 9.20244, "X_coordina": 3514947.17, "Y_coordina": 5405959.19, "LOD": "LOD2", "Year_of_co": 2002, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 7510.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 2310.8, "Total_wall": 2177.7, "Total_wa00": 0.0, "Total_outw": 3540.7, "Total_shar": 0.0, "Total_roof": 2366.4, "Gross_volu": 25781.7, "Is_Gross_v": "false", "Heated_vol": 23470.9, "Ridge_mean": 15.1, "Eaves_mean": 8.05, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.275, "Heated_are": 7510.7, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 2.8, "Total_Year": 267730.0, "January_He": 8340.0, "February_H": 3414.0, "March_Heat": 512.0, "April_Heat": 8.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 17.0, "November_H": 1347.0, "December_H": 7290.0, "PV_potenti": 112.49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202683846866742, 48.790943921755641, 0.0 ], [ 9.202687781668551, 48.790940947350876, 0.0 ], [ 9.20288150129249, 48.79105588829664, 0.0 ], [ 9.202597367118571, 48.791267349314118, 0.0 ], [ 9.202605143770537, 48.791272101583658, 0.0 ], [ 9.202591301453607, 48.79128192760988, 0.0 ], [ 9.202570290560718, 48.791269015571707, 0.0 ], [ 9.202581823593288, 48.791260272693727, 0.0 ], [ 9.202532030630033, 48.79123104518051, 0.0 ], [ 9.202020053182, 48.79093052052967, 0.0 ], [ 9.201917601966938, 48.790869911850216, 0.0 ], [ 9.202272706560715, 48.790606711700526, 0.0 ], [ 9.202321543565652, 48.79063531154307, 0.0 ], [ 9.20231082828014, 48.790644322730181, 0.0 ], [ 9.202384903173613, 48.790687895448812, 0.0 ], [ 9.202491582190799, 48.790750654447557, 0.0 ], [ 9.202436087769842, 48.790792566496279, 0.0 ], [ 9.202508390140286, 48.790835243014172, 0.0 ], [ 9.202521823705068, 48.790825327792376, 0.0 ], [ 9.202573664921299, 48.790856350181265, 0.0 ], [ 9.202616815238279, 48.790824531231458, 0.0 ], [ 9.20268366315131, 48.79086451952756, 0.0 ], [ 9.202641058670277, 48.790896697236143, 0.0 ], [ 9.202624233962686, 48.790909406070632, 0.0 ], [ 9.202683846866742, 48.790943921755641, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ee7d", "Latitude": 48.79152, "Longitude": 9.20225, "X_coordina": 3514932.45, "Y_coordina": 5406025.04, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2523, "PrimaryUsa": "industry", "PrimaryU00": 1610.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 422.4, "Total_wall": 956.4, "Total_wa00": 0.0, "Total_outw": 1477.0, "Total_shar": 0.0, "Total_roof": 614.7, "Gross_volu": 5032.4, "Is_Gross_v": "false", "Heated_vol": 5032.4, "Ridge_mean": 12.8, "Eaves_mean": 12.76, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.396, "Heated_are": 1610.4, "Mean_Uvalu": 0.33, "Specific_d": "32,9", "Specific_s": 4.2, "Total_Year": 59601.0, "January_He": 2524.0, "February_H": 1161.0, "March_Heat": 218.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 10.0, "November_H": 508.0, "December_H": 2258.0, "PV_potenti": 25.68 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201978989920363, 48.791618058545616, 0.0 ], [ 9.202074653611405, 48.791547030918487, 0.0 ], [ 9.202081611149865, 48.791551155195229, 0.0 ], [ 9.202153121293259, 48.791498064682209, 0.0 ], [ 9.202146300214, 48.791494030093823, 0.0 ], [ 9.202242370276792, 48.791422641918111, 0.0 ], [ 9.202249190992626, 48.791426586577899, 0.0 ], [ 9.202308488282496, 48.791382509776511, 0.0 ], [ 9.202424035920465, 48.791450468818809, 0.0 ], [ 9.202099594552571, 48.791691314533224, 0.0 ], [ 9.202015694542201, 48.79164155414626, 0.0 ], [ 9.202012573700266, 48.79164389763465, 0.0 ], [ 9.201979559573218, 48.79162435219871, 0.0 ], [ 9.201984037774134, 48.791621107094429, 0.0 ], [ 9.201978989920363, 48.791618058545616, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ee7e", "Latitude": 48.79125, "Longitude": 9.20139, "X_coordina": 3514869.3, "Y_coordina": 5405994.73, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 475.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 107.9, "Total_wall": 389.7, "Total_wa00": 0.0, "Total_outw": 569.2, "Total_shar": 306.1, "Total_roof": 107.9, "Gross_volu": 1594.3, "Is_Gross_v": "false", "Heated_vol": 1486.4, "Ridge_mean": 14.8, "Eaves_mean": 14.78, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.397, "Heated_are": 475.7, "Mean_Uvalu": 0.38, "Specific_d": "32,9", "Specific_s": 4.7, "Total_Year": 17861.0, "January_He": 850.0, "February_H": 352.0, "March_Heat": 70.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 4.0, "November_H": 171.0, "December_H": 783.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201303761858609, 48.791198038701474, 0.0 ], [ 9.201447408262695, 48.791282135852271, 0.0 ], [ 9.201378477027159, 48.791333602794637, 0.0 ], [ 9.201234694495039, 48.791249505796557, 0.0 ], [ 9.201303761858609, 48.791198038701474, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ec53", "Latitude": 48.79124, "Longitude": 9.20312, "X_coordina": 3514996.65, "Y_coordina": 5405994.02, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 233.7, "SecondaryU": "retail", "Secondar00": 92.6, "BuildingTy": "MFH", "Footprint_": 115.7, "Total_wall": 264.2, "Total_wa00": 0.0, "Total_outw": 462.1, "Total_shar": 224.7, "Total_roof": 164.7, "Gross_volu": 1135.1, "Is_Gross_v": "false", "Heated_vol": 1019.4, "Ridge_mean": 14.0, "Eaves_mean": 7.28, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 4, "Number_o00": 10, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.507, "Heated_are": 326.2, "Mean_Uvalu": 0.48, "Specific_d": "32,1", "Specific_s": 52.9, "Total_Year": 27703.0, "January_He": 4083.0, "February_H": 2965.0, "March_Heat": 1942.0, "April_Heat": 498.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 79.0, "October_He": 986.0, "November_H": 2665.0, "December_H": 3997.0, "PV_potenti": 6.15 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20301016576764, 48.791271568136466, 0.0 ], [ 9.202962143966417, 48.791242877228406, 0.0 ], [ 9.203038955030539, 48.7911884279658, 0.0 ], [ 9.203085199232351, 48.79121505373395, 0.0 ], [ 9.20313403511064, 48.79124311368961, 0.0 ], [ 9.203121009116902, 48.791252848415958, 0.0 ], [ 9.20318635658686, 48.791291759980822, 0.0 ], [ 9.203160576418387, 48.791311139040523, 0.0 ], [ 9.203136897536178, 48.791311630430123, 0.0 ], [ 9.203124074388572, 48.791304189389734, 0.0 ], [ 9.203098706107054, 48.791324466945106, 0.0 ], [ 9.203057914705981, 48.791300079658285, 0.0 ], [ 9.20301016576764, 48.791271568136466, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ec54", "Latitude": 48.79131, "Longitude": 9.20322, "X_coordina": 3515003.85, "Y_coordina": 5406002.27, "LOD": "LOD2", "Year_of_co": 1951, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 57.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 64.3, "Total_wall": 63.4, "Total_wa00": 0.0, "Total_outw": 220.4, "Total_shar": 122.1, "Total_roof": 64.3, "Gross_volu": 160.2, "Is_Gross_v": "false", "Heated_vol": 160.2, "Ridge_mean": 2.5, "Eaves_mean": 2.49, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.198, "Heated_are": 57.9, "Mean_Uvalu": 0.36, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203250549755161, 48.791348118725594, 0.0 ], [ 9.203161230441488, 48.791338294816256, 0.0 ], [ 9.203146016036365, 48.79137905705052, 0.0 ], [ 9.20308421823116, 48.791342926835306, 0.0 ], [ 9.203098706107054, 48.791324466945106, 0.0 ], [ 9.203124074388572, 48.791304189389734, 0.0 ], [ 9.203136897536178, 48.791311630430123, 0.0 ], [ 9.203160576418387, 48.791311139040523, 0.0 ], [ 9.20318635658686, 48.791291759980822, 0.0 ], [ 9.203199517947647, 48.791281845161109, 0.0 ], [ 9.203260757210721, 48.791314469279996, 0.0 ], [ 9.203250549755161, 48.791348118725594, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ec46", "Latitude": 48.79071, "Longitude": 9.20922, "X_coordina": 3515444.89, "Y_coordina": 5405937.33, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 935.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 206.2, "Total_wall": 663.5, "Total_wa00": 0.0, "Total_outw": 1003.3, "Total_shar": 205.9, "Total_roof": 292.2, "Gross_volu": 3129.2, "Is_Gross_v": "false", "Heated_vol": 2923.0, "Ridge_mean": 17.8, "Eaves_mean": 11.68, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 15, "Number_o00": 30, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.388, "Heated_are": 935.4, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 36.5, "Total_Year": 48914.0, "January_He": 8588.0, "February_H": 5848.0, "March_Heat": 3558.0, "April_Heat": 749.0, "May_Heatin": 23.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 75.0, "October_He": 1586.0, "November_H": 5212.0, "December_H": 8460.0, "PV_potenti": 13.45 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20930370771358, 48.790751963327914, 0.0 ], [ 9.209288132434033, 48.790802888402339, 0.0 ], [ 9.209283367255473, 48.790802447444179, 0.0 ], [ 9.209285785917364, 48.790794979388465, 0.0 ], [ 9.209024058375142, 48.790758406208269, 0.0 ], [ 9.209037218949247, 48.790715848448848, 0.0 ], [ 9.209048766542551, 48.79067814949105, 0.0 ], [ 9.209051720644787, 48.790668522301225, 0.0 ], [ 9.20931289700416, 48.790703567719433, 0.0 ], [ 9.209315722069585, 48.79069564930618, 0.0 ], [ 9.209320760922934, 48.790696449460036, 0.0 ], [ 9.20930370771358, 48.790751963327914, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ea85", "Latitude": 48.788, "Longitude": 9.19972, "X_coordina": 3514747.78, "Y_coordina": 5405633.88, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 851.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 210.1, "Total_wall": 536.7, "Total_wa00": 0.0, "Total_outw": 832.0, "Total_shar": 144.3, "Total_roof": 276.9, "Gross_volu": 2871.4, "Is_Gross_v": "false", "Heated_vol": 2661.3, "Ridge_mean": 16.4, "Eaves_mean": 11.1, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 14, "Number_o00": 22, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.374, "Heated_are": 851.6, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 39.1, "Total_Year": 46761.0, "January_He": 8142.0, "February_H": 5767.0, "March_Heat": 3639.0, "April_Heat": 751.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 83.0, "October_He": 1746.0, "November_H": 5162.0, "December_H": 7958.0, "PV_potenti": 13.35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199584893897393, 48.788014946316714, 0.0 ], [ 9.199561835150785, 48.787965528266461, 0.0 ], [ 9.199604259684314, 48.787956732143314, 0.0 ], [ 9.199644101048879, 48.787948569948561, 0.0 ], [ 9.199716712218351, 48.787933516713473, 0.0 ], [ 9.19976420018282, 48.788034688385295, 0.0 ], [ 9.19978684518626, 48.788082668333779, 0.0 ], [ 9.199744827769983, 48.788091194046793, 0.0 ], [ 9.199672759660803, 48.788105976586571, 0.0 ], [ 9.199632374183778, 48.7881142296579, 0.0 ], [ 9.199619754633645, 48.788089162833742, 0.0 ], [ 9.199612207416397, 48.788073439276239, 0.0 ], [ 9.199609190314124, 48.788067599468285, 0.0 ], [ 9.199601955935613, 48.788062126664819, 0.0 ], [ 9.199595398071667, 48.788055663528084, 0.0 ], [ 9.199590199298033, 48.788048748417097, 0.0 ], [ 9.19958635997093, 48.788041471255077, 0.0 ], [ 9.199584152620719, 48.788033921493472, 0.0 ], [ 9.199583305429103, 48.788026189527137, 0.0 ], [ 9.199584091639494, 48.788018544653511, 0.0 ], [ 9.199584893897393, 48.788014946316714, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ea8a", "Latitude": 48.78811, "Longitude": 9.19965, "X_coordina": 3514742.43, "Y_coordina": 5405645.3, "LOD": "LOD2", "Year_of_co": 1925, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 23.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 27.7, "Total_wall": 42.5, "Total_wa00": 0.0, "Total_outw": 127.4, "Total_shar": 54.3, "Total_roof": 27.7, "Gross_volu": 78.2, "Is_Gross_v": "false", "Heated_vol": 73.3, "Ridge_mean": 2.8, "Eaves_mean": 2.78, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.289, "Heated_are": 23.5, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199645287681632, 48.788144781314031, 0.0 ], [ 9.199643268486907, 48.788150360081424, 0.0 ], [ 9.19958179761332, 48.788160717932335, 0.0 ], [ 9.19955869387462, 48.788099969579818, 0.0 ], [ 9.199601124228211, 48.788092612226478, 0.0 ], [ 9.199619914426361, 48.788129448355299, 0.0 ], [ 9.19963691179551, 48.788126001790623, 0.0 ], [ 9.199645287681632, 48.788144781314031, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e95c", "Latitude": 48.78971, "Longitude": 9.20062, "X_coordina": 3514813.55, "Y_coordina": 5405823.44, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1008.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 142.9, "Total_wall": 793.7, "Total_wa00": 0.0, "Total_outw": 982.6, "Total_shar": 258.8, "Total_roof": 187.5, "Gross_volu": 3178.9, "Is_Gross_v": "false", "Heated_vol": 3150.0, "Ridge_mean": 23.2, "Eaves_mean": 19.45, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 19, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.356, "Heated_are": 1008.0, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 38.7, "Total_Year": 54935.0, "January_He": 9143.0, "February_H": 6800.0, "March_Heat": 4579.0, "April_Heat": 1144.0, "May_Heatin": 38.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 134.0, "October_He": 2244.0, "November_H": 6011.0, "December_H": 8877.0, "PV_potenti": 6.48 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20048461371498, 48.789699361876949, 0.0 ], [ 9.200520301545493, 48.789673131962729, 0.0 ], [ 9.20052957727081, 48.789678511228715, 0.0 ], [ 9.200562549325625, 48.789653814732212, 0.0 ], [ 9.200601426451163, 48.78967658761826, 0.0 ], [ 9.200678362823192, 48.789721775081524, 0.0 ], [ 9.200692686160222, 48.789730202941492, 0.0 ], [ 9.200578510443062, 48.789800002758668, 0.0 ], [ 9.200459562133629, 48.789730878759691, 0.0 ], [ 9.200493891232634, 48.789705190760806, 0.0 ], [ 9.20048461371498, 48.789699361876949, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e925", "Latitude": 48.7893, "Longitude": 9.20197, "X_coordina": 3514913.03, "Y_coordina": 5405778.87, "LOD": "LOD2", "Year_of_co": 2005, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1241.5, "SecondaryU": "retail", "Secondar00": 225.6, "BuildingTy": "GMH", "Footprint_": 282.0, "Total_wall": 865.3, "Total_wa00": 0.0, "Total_outw": 1098.1, "Total_shar": 289.8, "Total_roof": 311.2, "Gross_volu": 4584.6, "Is_Gross_v": "false", "Heated_vol": 4584.6, "Ridge_mean": 17.6, "Eaves_mean": 17.65, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 24, "Number_o00": 42, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.318, "Heated_are": 1467.1, "Mean_Uvalu": 0.37, "Specific_d": "24,6", "Specific_s": 31.6, "Total_Year": 82544.0, "January_He": 10956.0, "February_H": 8050.0, "March_Heat": 5592.0, "April_Heat": 1673.0, "May_Heatin": 78.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 158.0, "October_He": 2414.0, "November_H": 6841.0, "December_H": 10644.0, "PV_potenti": 16.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201762863813439, 48.789275207689961, 0.0 ], [ 9.202084541239753, 48.789264572194043, 0.0 ], [ 9.20208910449054, 48.789316450126037, 0.0 ], [ 9.2020939496824, 48.789370755500848, 0.0 ], [ 9.202084288685191, 48.789371132149427, 0.0 ], [ 9.202005503343162, 48.789374058011951, 0.0 ], [ 9.201772005527696, 48.789382920191969, 0.0 ], [ 9.201767576164157, 48.789330412547969, 0.0 ], [ 9.201763290110947, 48.78927970312504, 0.0 ], [ 9.201762863813439, 48.789275207689961, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e84d", "Latitude": 48.79138, "Longitude": 9.21354, "X_coordina": 3515762.5, "Y_coordina": 5406012.5, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 572.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 149.4, "Total_wall": 268.6, "Total_wa00": 0.0, "Total_outw": 463.6, "Total_shar": 390.5, "Total_roof": 210.6, "Gross_volu": 1937.9, "Is_Gross_v": "false", "Heated_vol": 1788.5, "Ridge_mean": 15.6, "Eaves_mean": 10.32, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 13, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.339, "Heated_are": 572.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 35.2, "Total_Year": 29183.0, "January_He": 4924.0, "February_H": 3543.0, "March_Heat": 2197.0, "April_Heat": 402.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 1040.0, "November_H": 3169.0, "December_H": 4796.0, "PV_potenti": 10.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213536483135684, 48.791346141227415, 0.0 ], [ 9.213601340770325, 48.791363915747077, 0.0 ], [ 9.213528749800146, 48.791480141743044, 0.0 ], [ 9.213463212704099, 48.79146263821314, 0.0 ], [ 9.213394132956937, 48.791444152050751, 0.0 ], [ 9.213467810283669, 48.791327294659929, 0.0 ], [ 9.213536483135684, 48.791346141227415, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e78c", "Latitude": 48.79069, "Longitude": 9.21018, "X_coordina": 3515515.35, "Y_coordina": 5405934.63, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 345.9, "SecondaryU": "office and administration", "Secondar00": 160.5, "BuildingTy": "RH", "Footprint_": 200.7, "Total_wall": 485.6, "Total_wa00": 0.0, "Total_outw": 878.8, "Total_shar": 0.0, "Total_roof": 200.7, "Gross_volu": 1783.3, "Is_Gross_v": "false", "Heated_vol": 1582.6, "Ridge_mean": 8.9, "Eaves_mean": 8.89, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 6, "Number_o00": 6, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.532, "Heated_are": 506.4, "Mean_Uvalu": 0.67, "Specific_d": "15,5", "Specific_s": 64.9, "Total_Year": 40705.0, "January_He": 7987.0, "February_H": 5526.0, "March_Heat": 3516.0, "April_Heat": 982.0, "May_Heatin": 79.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 165.0, "October_He": 1761.0, "November_H": 4977.0, "December_H": 7885.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210096601147336, 48.790752317993977, 0.0 ], [ 9.21009265215752, 48.790751785656639, 0.0 ], [ 9.210093052557008, 48.790749896530187, 0.0 ], [ 9.209987513744135, 48.790734352387659, 0.0 ], [ 9.210016275042076, 48.790647343800366, 0.0 ], [ 9.210112822832187, 48.790660836078132, 0.0 ], [ 9.210114835334631, 48.790653908287567, 0.0 ], [ 9.210129235779466, 48.790647767206465, 0.0 ], [ 9.210155518465339, 48.79065167588584, 0.0 ], [ 9.210166032262341, 48.790659929671882, 0.0 ], [ 9.210163752835927, 48.790668116881129, 0.0 ], [ 9.21027501015053, 48.790684279886378, 0.0 ], [ 9.210246796662179, 48.790772006926559, 0.0 ], [ 9.210136903110589, 48.790756560794755, 0.0 ], [ 9.21013650158622, 48.790758180152551, 0.0 ], [ 9.210133233443036, 48.790757736497866, 0.0 ], [ 9.210096601147336, 48.790752317993977, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e70b", "Latitude": 48.79105, "Longitude": 9.20873, "X_coordina": 3515408.98, "Y_coordina": 5405974.78, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 120.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 50.8, "Total_wall": 120.9, "Total_wa00": 0.0, "Total_outw": 228.4, "Total_shar": 110.6, "Total_roof": 70.2, "Gross_volu": 385.2, "Is_Gross_v": "false", "Heated_vol": 377.1, "Ridge_mean": 10.2, "Eaves_mean": 6.05, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.636, "Heated_are": 120.7, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 52.2, "Total_Year": 8206.0, "January_He": 1591.0, "February_H": 1073.0, "March_Heat": 623.0, "April_Heat": 136.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 288.0, "November_H": 978.0, "December_H": 1585.0, "PV_potenti": 2.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208725569779844, 48.79107898574496, 0.0 ], [ 9.208714562878511, 48.791115874375258, 0.0 ], [ 9.208633541386366, 48.791105230355093, 0.0 ], [ 9.208656777533575, 48.791030821428535, 0.0 ], [ 9.208736711641329, 48.791041827097906, 0.0 ], [ 9.208725569779844, 48.79107898574496, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e3a5", "Latitude": 48.79006, "Longitude": 9.20839, "X_coordina": 3515384.22, "Y_coordina": 5405864.31, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 815.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 226.2, "Total_wall": 443.1, "Total_wa00": 0.0, "Total_outw": 658.7, "Total_shar": 290.2, "Total_roof": 226.2, "Gross_volu": 2244.1, "Is_Gross_v": "false", "Heated_vol": 2244.1, "Ridge_mean": 9.9, "Eaves_mean": 9.92, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 10, "Number_o00": 18, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.399, "Heated_are": 815.5, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 32.5, "Total_Year": 39397.0, "January_He": 6769.0, "February_H": 4634.0, "March_Heat": 2627.0, "April_Heat": 357.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 32.0, "October_He": 1200.0, "November_H": 4243.0, "December_H": 6612.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208278306415302, 48.790178850786226, 0.0 ], [ 9.208266076740568, 48.789986076645356, 0.0 ], [ 9.208409367446361, 48.789982310394656, 0.0 ], [ 9.208422011533413, 48.790176432624882, 0.0 ], [ 9.208407723273796, 48.790176818178033, 0.0 ], [ 9.208407579360621, 48.790174930042312, 0.0 ], [ 9.208278306415302, 48.790178850786226, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e26e", "Latitude": 48.79025, "Longitude": 9.2088, "X_coordina": 3515414.44, "Y_coordina": 5405885.65, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 825.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 229.4, "Total_wall": 650.9, "Total_wa00": 0.0, "Total_outw": 980.9, "Total_shar": 0.0, "Total_roof": 229.4, "Gross_volu": 2285.6, "Is_Gross_v": "false", "Heated_vol": 2285.6, "Ridge_mean": 10.0, "Eaves_mean": 9.97, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 10, "Number_o00": 23, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.486, "Heated_are": 825.9, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 36.9, "Total_Year": 43598.0, "January_He": 7955.0, "February_H": 5253.0, "March_Heat": 2884.0, "April_Heat": 406.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 1299.0, "November_H": 4807.0, "December_H": 7861.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208742122051929, 48.79018070870594, 0.0 ], [ 9.20874032002162, 48.790172798693163, 0.0 ], [ 9.208795678093509, 48.790165054829181, 0.0 ], [ 9.208855817680702, 48.790358461417227, 0.0 ], [ 9.208712457722278, 48.790378594447695, 0.0 ], [ 9.208656296300093, 48.790192644238715, 0.0 ], [ 9.208742122051929, 48.79018070870594, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e1a4", "Latitude": 48.78846, "Longitude": 9.2119, "X_coordina": 3515642.56, "Y_coordina": 5405687.63, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 87.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.6, "Total_wall": 51.3, "Total_wa00": 0.0, "Total_outw": 118.3, "Total_shar": 238.5, "Total_roof": 58.4, "Gross_volu": 347.7, "Is_Gross_v": "false", "Heated_vol": 305.0, "Ridge_mean": 10.2, "Eaves_mean": 6.11, "Storey_num": 3, "Average_St": 3.1, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.467, "Heated_are": 87.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.4, "Total_Year": 5549.0, "January_He": 1051.0, "February_H": 718.0, "March_Heat": 406.0, "April_Heat": 66.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 207.0, "November_H": 670.0, "December_H": 1031.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211791461816567, 48.788503910205385, 0.0 ], [ 9.211797942443535, 48.788459296154464, 0.0 ], [ 9.211856614997053, 48.788463594491397, 0.0 ], [ 9.21191487891725, 48.788467803626766, 0.0 ], [ 9.211908394985189, 48.788511608377405, 0.0 ], [ 9.211850268617232, 48.788507758680382, 0.0 ], [ 9.211791461816567, 48.788503910205385, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e111", "Latitude": 48.79037, "Longitude": 9.21151, "X_coordina": 3515613.7, "Y_coordina": 5405898.99, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 526.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 127.1, "Total_wall": 286.3, "Total_wa00": 0.0, "Total_outw": 421.1, "Total_shar": 330.3, "Total_roof": 184.3, "Gross_volu": 1773.6, "Is_Gross_v": "false", "Heated_vol": 1646.5, "Ridge_mean": 16.5, "Eaves_mean": 11.4, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.352, "Heated_are": 526.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 37.8, "Total_Year": 28264.0, "January_He": 4804.0, "February_H": 3504.0, "March_Heat": 2226.0, "April_Heat": 462.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 49.0, "October_He": 1058.0, "November_H": 3102.0, "December_H": 4701.0, "PV_potenti": 8.57 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211535061154427, 48.790347456369119, 0.0 ], [ 9.211579024964783, 48.790381096964694, 0.0 ], [ 9.211444479844451, 48.790458318699265, 0.0 ], [ 9.211400107397997, 48.79042458887934, 0.0 ], [ 9.211357782832374, 48.79039238398525, 0.0 ], [ 9.211493008754051, 48.790315251024332, 0.0 ], [ 9.211535061154427, 48.790347456369119, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000e0b5", "Latitude": 48.78909, "Longitude": 9.19749, "X_coordina": 3514583.79, "Y_coordina": 5405754.52, "LOD": "LOD2", "Year_of_co": 2002, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2130, "PrimaryUsa": "retail", "PrimaryU00": 449.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 244.8, "Total_wall": 293.8, "Total_wa00": 0.0, "Total_outw": 980.6, "Total_shar": 0.0, "Total_roof": 244.8, "Gross_volu": 1007.2, "Is_Gross_v": "false", "Heated_vol": 1007.2, "Ridge_mean": 4.1, "Eaves_mean": 4.12, "Storey_num": 2, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.778, "Heated_are": 449.0, "Mean_Uvalu": 0.39, "Specific_d": "73,0", "Specific_s": 50.1, "Total_Year": 55262.0, "January_He": 5164.0, "February_H": 3798.0, "March_Heat": 2693.0, "April_Heat": 934.0, "May_Heatin": 100.0, "June_Heati": 3, "July_Heati": 0, "August_Hea": 1, "September_": 178.0, "October_He": 1306.0, "November_H": 3288.0, "December_H": 5017.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197494697205077, 48.78915401594714, 0.0 ], [ 9.197491295656381, 48.789154201628143, 0.0 ], [ 9.197275763707681, 48.789163473504004, 0.0 ], [ 9.197274915440817, 48.789155381829531, 0.0 ], [ 9.197267263426879, 48.789078060606542, 0.0 ], [ 9.197486604824547, 48.789068602366122, 0.0 ], [ 9.197486457795209, 48.789065814985364, 0.0 ], [ 9.197618585236764, 48.789061541752872, 0.0 ], [ 9.197626401068854, 48.78914578679202, 0.0 ], [ 9.197494544881543, 48.78914987972091, 0.0 ], [ 9.197494697205077, 48.78915401594714, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000df9d", "Latitude": 48.78767, "Longitude": 9.21133, "X_coordina": 3515600.78, "Y_coordina": 5405598.77, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 788.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 176.9, "Total_wall": 520.4, "Total_wa00": 0.0, "Total_outw": 723.9, "Total_shar": 204.1, "Total_roof": 247.2, "Gross_volu": 2634.3, "Is_Gross_v": "false", "Heated_vol": 2464.5, "Ridge_mean": 17.5, "Eaves_mean": 12.69, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 13, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.375, "Heated_are": 788.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 36.2, "Total_Year": 41077.0, "January_He": 7009.0, "February_H": 4934.0, "March_Heat": 3139.0, "April_Heat": 768.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 72.0, "October_He": 1400.0, "November_H": 4333.0, "December_H": 6899.0, "PV_potenti": 11.08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211148660669691, 48.787713222833396, 0.0 ], [ 9.211178912179626, 48.787625491788212, 0.0 ], [ 9.211413678816408, 48.787661839820117, 0.0 ], [ 9.211397272725177, 48.787708630243841, 0.0 ], [ 9.211383018302136, 48.787749301906153, 0.0 ], [ 9.211148660669691, 48.787713222833396, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000dc91", "Latitude": 48.78897, "Longitude": 9.19546, "X_coordina": 3514434.59, "Y_coordina": 5405740.62, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1070.7, "SecondaryU": "retail", "Secondar00": 161.0, "BuildingTy": "GMH", "Footprint_": 201.2, "Total_wall": 994.0, "Total_wa00": 0.0, "Total_outw": 1301.3, "Total_shar": 66.3, "Total_roof": 229.7, "Gross_volu": 3982.7, "Is_Gross_v": "false", "Heated_vol": 3849.0, "Ridge_mean": 21.6, "Eaves_mean": 17.96, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 20, "Number_o00": 29, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.366, "Heated_are": 1231.7, "Mean_Uvalu": 0.45, "Specific_d": "23,3", "Specific_s": 36.5, "Total_Year": 73655.0, "January_He": 11086.0, "February_H": 7850.0, "March_Heat": 4866.0, "April_Heat": 978.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 106.0, "October_He": 2267.0, "November_H": 6945.0, "December_H": 10816.0, "PV_potenti": 12.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195279182714147, 48.788991165812583, 0.0 ], [ 9.195340921348553, 48.788944120957559, 0.0 ], [ 9.195397503480104, 48.788900951535616, 0.0 ], [ 9.195496803359582, 48.78895914344271, 0.0 ], [ 9.195552864104821, 48.788991960308635, 0.0 ], [ 9.195495328327555, 48.78903486165423, 0.0 ], [ 9.195433450144463, 48.789081007591648, 0.0 ], [ 9.195279182714147, 48.788991165812583, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000dc92", "Latitude": 48.78893, "Longitude": 9.1956, "X_coordina": 3514445.03, "Y_coordina": 5405735.67, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1131, "PrimaryUsa": "residential", "PrimaryU00": 94.7, "SecondaryU": "industry", "Secondar00": 39.4, "BuildingTy": "RH", "Footprint_": 49.3, "Total_wall": 148.0, "Total_wa00": 0.0, "Total_outw": 254.9, "Total_shar": 79.4, "Total_roof": 49.3, "Gross_volu": 347.0, "Is_Gross_v": "false", "Heated_vol": 347.0, "Ridge_mean": 7.0, "Eaves_mean": 7.03, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.711, "Heated_are": 134.1, "Mean_Uvalu": 0.47, "Specific_d": "20,8", "Specific_s": 28.7, "Total_Year": 6648.0, "January_He": 1126.0, "February_H": 660.0, "March_Heat": 266.0, "April_Heat": 24.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 2.0, "October_He": 89.0, "November_H": 568.0, "December_H": 1119.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19556165643508, 48.788908136541409, 0.0 ], [ 9.195618807979843, 48.788941491064953, 0.0 ], [ 9.195552864104821, 48.788991960308635, 0.0 ], [ 9.195496803359582, 48.78895914344271, 0.0 ], [ 9.195502566832321, 48.788936382976111, 0.0 ], [ 9.195547070395955, 48.788901866656197, 0.0 ], [ 9.19554869857822, 48.78890060496029, 0.0 ], [ 9.19556165643508, 48.788908136541409, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000dc93", "Latitude": 48.78882, "Longitude": 9.19556, "X_coordina": 3514442.04, "Y_coordina": 5405724.3, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 97.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 90.1, "Total_wall": 95.9, "Total_wa00": 0.0, "Total_outw": 255.0, "Total_shar": 95.7, "Total_roof": 90.9, "Gross_volu": 325.5, "Is_Gross_v": "false", "Heated_vol": 305.9, "Ridge_mean": 4.1, "Eaves_mean": 2.88, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NOT_HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.884, "Heated_are": 97.9, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 17.5, "Total_Year": 4927.0, "January_He": 577.0, "February_H": 273.0, "March_Heat": 75.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 12.0, "November_H": 209.0, "December_H": 560.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195547070395955, 48.788901866656197, 0.0 ], [ 9.195526886173788, 48.788890840321557, 0.0 ], [ 9.195509338316027, 48.788892848435836, 0.0 ], [ 9.195428590353192, 48.788845865511604, 0.0 ], [ 9.195517881767611, 48.788779979755375, 0.0 ], [ 9.195604951206327, 48.788877758739481, 0.0 ], [ 9.19556165643508, 48.788908136541409, 0.0 ], [ 9.19554869857822, 48.78890060496029, 0.0 ], [ 9.195547070395955, 48.788901866656197, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000dbfe", "Latitude": 48.79028, "Longitude": 9.20928, "X_coordina": 3515449.89, "Y_coordina": 5405888.92, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 404.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 148.1, "Total_wall": 375.4, "Total_wa00": 0.0, "Total_outw": 739.1, "Total_shar": 0.0, "Total_roof": 168.1, "Gross_volu": 1412.6, "Is_Gross_v": "false", "Heated_vol": 1264.5, "Ridge_mean": 11.0, "Eaves_mean": 8.36, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 5, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.525, "Heated_are": 404.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 48.3, "Total_Year": 25955.0, "January_He": 4826.0, "February_H": 3374.0, "March_Heat": 2040.0, "April_Heat": 411.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 55.0, "October_He": 1018.0, "November_H": 3055.0, "December_H": 4753.0, "PV_potenti": 7.41 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209167530191275, 48.79030654928178, 0.0 ], [ 9.209135081408112, 48.790259758005639, 0.0 ], [ 9.209261491661627, 48.790221940295673, 0.0 ], [ 9.209342281774161, 48.790340852341188, 0.0 ], [ 9.209216823563297, 48.790378578485708, 0.0 ], [ 9.209185327340599, 48.790331785493741, 0.0 ], [ 9.209181522709731, 48.790333231182665, 0.0 ], [ 9.209163451506654, 48.790307545849757, 0.0 ], [ 9.209167530191275, 48.79030654928178, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000da18", "Latitude": 48.79347, "Longitude": 9.20187, "X_coordina": 3514904.04, "Y_coordina": 5406242.56, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1834.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 320.8, "Total_wall": 1066.4, "Total_wa00": 0.0, "Total_outw": 1413.4, "Total_shar": 261.6, "Total_roof": 320.8, "Gross_volu": 4883.6, "Is_Gross_v": "false", "Heated_vol": 4883.6, "Ridge_mean": 19.2, "Eaves_mean": 19.25, "Storey_num": 8, "Average_St": 2.4, "Number_of_": 29, "Number_o00": 39, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.35, "Heated_are": 1834.7, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 27.5, "Total_Year": 79443.0, "January_He": 12751.0, "February_H": 8954.0, "March_Heat": 5329.0, "April_Heat": 858.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 59.0, "October_He": 2239.0, "November_H": 7747.0, "December_H": 12431.0, "PV_potenti": 14.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201801120878802, 48.793589045801788, 0.0 ], [ 9.201809578686373, 48.793593886853024, 0.0 ], [ 9.201773617994521, 48.7936204773208, 0.0 ], [ 9.201641968726957, 48.793543193795202, 0.0 ], [ 9.201880802196792, 48.793366794914029, 0.0 ], [ 9.202003578762977, 48.79343761923613, 0.0 ], [ 9.201887018080944, 48.79352522935519, 0.0 ], [ 9.201883197845659, 48.793522898039598, 0.0 ], [ 9.201864879278439, 48.793536688459092, 0.0 ], [ 9.201868427670707, 48.793539110175388, 0.0 ], [ 9.201801120878802, 48.793589045801788, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d948", "Latitude": 48.78809, "Longitude": 9.21099, "X_coordina": 3515575.68, "Y_coordina": 5405646.22, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 152.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 55.0, "Total_wall": 84.2, "Total_wa00": 0.0, "Total_outw": 149.8, "Total_shar": 228.4, "Total_roof": 88.2, "Gross_volu": 532.0, "Is_Gross_v": "false", "Heated_vol": 477.0, "Ridge_mean": 12.5, "Eaves_mean": 6.83, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.452, "Heated_are": 152.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 44.7, "Total_Year": 9246.0, "January_He": 1663.0, "February_H": 1182.0, "March_Heat": 735.0, "April_Heat": 149.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 19.0, "October_He": 375.0, "November_H": 1079.0, "December_H": 1621.0, "PV_potenti": 3.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210951409341602, 48.78808829622961, 0.0 ], [ 9.211009550615726, 48.788095833222961, 0.0 ], [ 9.210994124517232, 48.788149276140842, 0.0 ], [ 9.21093557567545, 48.788141919733597, 0.0 ], [ 9.21087335060942, 48.788134120409978, 0.0 ], [ 9.210888502773205, 48.788080228391493, 0.0 ], [ 9.210951409341602, 48.78808829622961, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d919", "Latitude": 48.78863, "Longitude": 9.21388, "X_coordina": 3515788.33, "Y_coordina": 5405706.49, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 101.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.1, "Total_wall": 63.9, "Total_wa00": 0.0, "Total_outw": 129.1, "Total_shar": 221.5, "Total_roof": 56.0, "Gross_volu": 365.5, "Is_Gross_v": "false", "Heated_vol": 318.4, "Ridge_mean": 9.1, "Eaves_mean": 6.25, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.487, "Heated_are": 101.9, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 47.2, "Total_Year": 6428.0, "January_He": 1198.0, "February_H": 836.0, "March_Heat": 490.0, "April_Heat": 85.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 11.0, "October_He": 248.0, "November_H": 769.0, "December_H": 1175.0, "PV_potenti": 0.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213906329088941, 48.788641091588715, 0.0 ], [ 9.213876188056778, 48.788689796265245, 0.0 ], [ 9.213768792349404, 48.788652857199878, 0.0 ], [ 9.213793936004237, 48.788613064270237, 0.0 ], [ 9.213906329088941, 48.788641091588715, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d655", "Latitude": 48.78864, "Longitude": 9.20942, "X_coordina": 3515460.82, "Y_coordina": 5405706.93, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 80.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 39.9, "Total_wall": 45.0, "Total_wa00": 0.0, "Total_outw": 109.7, "Total_shar": 203.3, "Total_roof": 53.4, "Gross_volu": 289.8, "Is_Gross_v": "false", "Heated_vol": 249.9, "Ridge_mean": 9.0, "Eaves_mean": 5.46, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.512, "Heated_are": 80.0, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.0, "Total_Year": 5024.0, "January_He": 955.0, "February_H": 647.0, "March_Heat": 363.0, "April_Heat": 59.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 184.0, "November_H": 605.0, "December_H": 936.0, "PV_potenti": 1.81 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20938098750786, 48.788685827354065, 0.0 ], [ 9.209328057187724, 48.788687901898491, 0.0 ], [ 9.209327059683805, 48.788677112873629, 0.0 ], [ 9.209324060816463, 48.78864321710838, 0.0 ], [ 9.209377263641315, 48.788641231993964, 0.0 ], [ 9.209433323575912, 48.788639061811715, 0.0 ], [ 9.209437183580729, 48.78868365692243, 0.0 ], [ 9.20938098750786, 48.788685827354065, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d605", "Latitude": 48.79163, "Longitude": 9.19933, "X_coordina": 3514718.5, "Y_coordina": 5406036.85, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 135.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 82.7, "Total_wall": 151.6, "Total_wa00": 0.0, "Total_outw": 300.1, "Total_shar": 357.1, "Total_roof": 82.7, "Gross_volu": 507.1, "Is_Gross_v": "false", "Heated_vol": 424.5, "Ridge_mean": 6.1, "Eaves_mean": 6.14, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.683, "Heated_are": 135.8, "Mean_Uvalu": 0.44, "Specific_d": "73,0", "Specific_s": 56.7, "Total_Year": 17622.0, "January_He": 1934.0, "February_H": 1261.0, "March_Heat": 784.0, "April_Heat": 234.0, "May_Heatin": 27.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 45.0, "October_He": 392.0, "November_H": 1109.0, "December_H": 1919.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199427805747732, 48.791745700250594, 0.0 ], [ 9.199127417819078, 48.791569519292857, 0.0 ], [ 9.199152794855674, 48.791550675080558, 0.0 ], [ 9.199453031692498, 48.791726856234412, 0.0 ], [ 9.199427805747732, 48.791745700250594, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d606", "Latitude": 48.79173, "Longitude": 9.19908, "X_coordina": 3514699.7, "Y_coordina": 5406048.24, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 73.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 61.6, "Total_wall": 74.2, "Total_wa00": 0.0, "Total_outw": 143.3, "Total_shar": 142.3, "Total_roof": 61.6, "Gross_volu": 269.2, "Is_Gross_v": "false", "Heated_vol": 230.7, "Ridge_mean": 5.7, "Eaves_mean": 5.72, "Storey_num": 2, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.776, "Heated_are": 73.8, "Mean_Uvalu": 0.4, "Specific_d": "73,0", "Specific_s": 82.2, "Total_Year": 11456.0, "January_He": 1322.0, "February_H": 1013.0, "March_Heat": 748.0, "April_Heat": 279.0, "May_Heatin": 35.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 76.0, "October_He": 415.0, "November_H": 905.0, "December_H": 1273.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198995626105749, 48.791728461368919, 0.0 ], [ 9.199028048530218, 48.791704664606989, 0.0 ], [ 9.199124633144082, 48.791761056883814, 0.0 ], [ 9.199081744255649, 48.791793321888207, 0.0 ], [ 9.19907602589751, 48.791790005499962, 0.0 ], [ 9.199066246564874, 48.791797403334584, 0.0 ], [ 9.198975225611486, 48.791743414046252, 0.0 ], [ 9.198944711607504, 48.791725308493731, 0.0 ], [ 9.198965069913434, 48.791710355894665, 0.0 ], [ 9.198995626105749, 48.791728461368919, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d555", "Latitude": 48.78799, "Longitude": 9.19842, "X_coordina": 3514652.01, "Y_coordina": 5405631.94, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 394.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 144.0, "Total_wall": 378.3, "Total_wa00": 0.0, "Total_outw": 603.5, "Total_shar": 45.3, "Total_roof": 227.7, "Gross_volu": 1360.3, "Is_Gross_v": "false", "Heated_vol": 1232.8, "Ridge_mean": 13.9, "Eaves_mean": 13.89, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 5, "Number_o00": 10, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.583, "Heated_are": 394.5, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 48.0, "Total_Year": 25171.0, "January_He": 4566.0, "February_H": 3238.0, "March_Heat": 2077.0, "April_Heat": 513.0, "May_Heatin": 24.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 70.0, "October_He": 1045.0, "November_H": 2912.0, "December_H": 4475.0, "PV_potenti": 10.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198389543942197, 48.788095964830987, 0.0 ], [ 9.198375005639424, 48.788101834914315, 0.0 ], [ 9.198350357529799, 48.78809774088397, 0.0 ], [ 9.19834270049118, 48.788088581859562, 0.0 ], [ 9.198289588535911, 48.788079051495366, 0.0 ], [ 9.198329467796325, 48.78797682954319, 0.0 ], [ 9.198353449568122, 48.787915460301519, 0.0 ], [ 9.198452182371184, 48.787933005154791, 0.0 ], [ 9.198428473240089, 48.787994463870682, 0.0 ], [ 9.198405573129827, 48.788054032790335, 0.0 ], [ 9.198399915605698, 48.788068790017654, 0.0 ], [ 9.198389543942197, 48.788095964830987, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d558", "Latitude": 48.78809, "Longitude": 9.19836, "X_coordina": 3514648.2, "Y_coordina": 5405643.54, "LOD": "LOD2", "Year_of_co": 1966, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 43.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 54.1, "Total_wall": 66.8, "Total_wa00": 0.0, "Total_outw": 206.3, "Total_shar": 45.1, "Total_roof": 54.1, "Gross_volu": 147.9, "Is_Gross_v": "false", "Heated_vol": 135.8, "Ridge_mean": 2.7, "Eaves_mean": 2.72, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.223, "Heated_are": 43.5, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198375005639424, 48.788101834914315, 0.0 ], [ 9.198389543942197, 48.788095964830987, 0.0 ], [ 9.198377272006599, 48.788124401848052, 0.0 ], [ 9.198388167859841, 48.788126631168808, 0.0 ], [ 9.198379688287483, 48.788150475546011, 0.0 ], [ 9.19824949869896, 48.788127859142477, 0.0 ], [ 9.198269842419748, 48.788075668396075, 0.0 ], [ 9.198289724977487, 48.788079141184092, 0.0 ], [ 9.19834270049118, 48.788088581859562, 0.0 ], [ 9.198350357529799, 48.78809774088397, 0.0 ], [ 9.198375005639424, 48.788101834914315, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d186", "Latitude": 48.79021, "Longitude": 9.20625, "X_coordina": 3515226.74, "Y_coordina": 5405880.23, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 601.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 145.1, "Total_wall": 391.5, "Total_wa00": 0.0, "Total_outw": 597.6, "Total_shar": 247.1, "Total_roof": 224.5, "Gross_volu": 1981.2, "Is_Gross_v": "false", "Heated_vol": 1878.3, "Ridge_mean": 16.4, "Eaves_mean": 10.85, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 10, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.397, "Heated_are": 601.0, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 38.0, "Total_Year": 32345.0, "January_He": 5636.0, "February_H": 3960.0, "March_Heat": 2425.0, "April_Heat": 466.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 1176.0, "November_H": 3591.0, "December_H": 5508.0, "PV_potenti": 10.28 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206199685031294, 48.790297154128446, 0.0 ], [ 9.206134763788706, 48.790296101348467, 0.0 ], [ 9.206139501957376, 48.790157070942023, 0.0 ], [ 9.206143721203052, 48.790157153312954, 0.0 ], [ 9.206206055766197, 48.790158030872433, 0.0 ], [ 9.206268118145767, 48.790158908885715, 0.0 ], [ 9.206267867706092, 48.790164214828259, 0.0 ], [ 9.206261203577984, 48.790298123042852, 0.0 ], [ 9.206199685031294, 48.790297154128446, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d188", "Latitude": 48.7901, "Longitude": 9.20627, "X_coordina": 3515228.2, "Y_coordina": 5405868.26, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 54.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 76.4, "Total_wall": 64.4, "Total_wa00": 0.0, "Total_outw": 211.9, "Total_shar": 72.8, "Total_roof": 76.5, "Gross_volu": 217.5, "Is_Gross_v": "false", "Heated_vol": 168.9, "Ridge_mean": 3.2, "Eaves_mean": 3.19, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.081, "Heated_are": 54.1, "Mean_Uvalu": 0.51, "Specific_d": "non calculated", "Specific_s": 113.7, "Total_Year": 6143.0, "January_He": 1395.0, "February_H": 993.0, "March_Heat": 689.0, "April_Heat": 249.0, "May_Heatin": 34.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 409.0, "November_H": 925.0, "December_H": 1387.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206268118145767, 48.790158908885715, 0.0 ], [ 9.206206055766197, 48.790158030872433, 0.0 ], [ 9.206143721203052, 48.790157153312954, 0.0 ], [ 9.206149780880216, 48.790074952270224, 0.0 ], [ 9.206228003052878, 48.790100440449862, 0.0 ], [ 9.206298025458203, 48.790117580368459, 0.0 ], [ 9.20629631442622, 48.790164973184964, 0.0 ], [ 9.206267867706092, 48.790164214828259, 0.0 ], [ 9.206268118145767, 48.790158908885715, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d0ab", "Latitude": 48.79209, "Longitude": 9.20325, "X_coordina": 3515006.36, "Y_coordina": 5406089.12, "LOD": "LOD2", "Year_of_co": 1999, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 856.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 178.4, "Total_wall": 585.9, "Total_wa00": 0.0, "Total_outw": 847.8, "Total_shar": 260.0, "Total_roof": 204.5, "Gross_volu": 2855.2, "Is_Gross_v": "false", "Heated_vol": 2676.7, "Ridge_mean": 17.5, "Eaves_mean": 14.41, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 14, "Number_o00": 21, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.354, "Heated_are": 856.6, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 33.0, "Total_Year": 41852.0, "January_He": 7127.0, "February_H": 4942.0, "March_Heat": 2935.0, "April_Heat": 505.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 44.0, "October_He": 1332.0, "November_H": 4423.0, "December_H": 6965.0, "PV_potenti": 11.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203251176538345, 48.792042417750849, 0.0 ], [ 9.20330210187111, 48.792048442662391, 0.0 ], [ 9.203265525408087, 48.792191665593108, 0.0 ], [ 9.203191724159977, 48.792182893399925, 0.0 ], [ 9.203117378181286, 48.792174032196684, 0.0 ], [ 9.203154091877114, 48.792030988917688, 0.0 ], [ 9.203167163811248, 48.792032584481099, 0.0 ], [ 9.20323061594417, 48.792040026100786, 0.0 ], [ 9.203251176538345, 48.792042417750849, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000d0ac", "Latitude": 48.79199, "Longitude": 9.20326, "X_coordina": 3515006.84, "Y_coordina": 5406077.9, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 30.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 38.3, "Total_wall": 31.1, "Total_wa00": 0.0, "Total_outw": 108.9, "Total_shar": 107.4, "Total_roof": 38.3, "Gross_volu": 102.1, "Is_Gross_v": "false", "Heated_vol": 95.4, "Ridge_mean": 2.7, "Eaves_mean": 2.68, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.076, "Heated_are": 30.5, "Mean_Uvalu": 0.37, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20323061594417, 48.792040026100786, 0.0 ], [ 9.203167163811248, 48.792032584481099, 0.0 ], [ 9.203181508434158, 48.791978605014492, 0.0 ], [ 9.203264837315853, 48.791987630168542, 0.0 ], [ 9.203251176538345, 48.792042417750849, 0.0 ], [ 9.20323061594417, 48.792040026100786, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ccd9", "Latitude": 48.78861, "Longitude": 9.21105, "X_coordina": 3515579.94, "Y_coordina": 5405703.79, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 100.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.1, "Total_wall": 61.9, "Total_wa00": 0.0, "Total_outw": 140.6, "Total_shar": 200.1, "Total_roof": 63.7, "Gross_volu": 361.4, "Is_Gross_v": "false", "Heated_vol": 315.3, "Ridge_mean": 9.6, "Eaves_mean": 6.04, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.509, "Heated_are": 100.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 45.6, "Total_Year": 6194.0, "January_He": 1178.0, "February_H": 790.0, "March_Heat": 432.0, "April_Heat": 64.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 218.0, "November_H": 746.0, "December_H": 1159.0, "PV_potenti": 1.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211052470103191, 48.788659845663368, 0.0 ], [ 9.211001164275361, 48.788659849755092, 0.0 ], [ 9.210950130624905, 48.788659853325441, 0.0 ], [ 9.210950352694692, 48.788615430634934, 0.0 ], [ 9.210950444307272, 48.788604819476234, 0.0 ], [ 9.211001341813388, 48.7886048161552, 0.0 ], [ 9.211053055850897, 48.788604811315246, 0.0 ], [ 9.211052470103191, 48.788659845663368, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000cad3", "Latitude": 48.78768, "Longitude": 9.19616, "X_coordina": 3514486.69, "Y_coordina": 5405597.42, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 817.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 159.7, "Total_wall": 539.1, "Total_wa00": 0.0, "Total_outw": 701.0, "Total_shar": 38.3, "Total_roof": 222.1, "Gross_volu": 2715.7, "Is_Gross_v": "true", "Heated_vol": 2556.0, "Ridge_mean": 16.9, "Eaves_mean": 11.53, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 13, "Number_o00": 30, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.354, "Heated_are": 817.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 35.5, "Total_Year": 42010.0, "January_He": 7134.0, "February_H": 5089.0, "March_Heat": 3183.0, "April_Heat": 641.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 64.0, "October_He": 1465.0, "November_H": 4464.0, "December_H": 6998.0, "PV_potenti": 10.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196180923078479, 48.787630616930088, 0.0 ], [ 9.196212275757844, 48.787679032367329, 0.0 ], [ 9.196239931374866, 48.78772160905794, 0.0 ], [ 9.196101685410337, 48.787761321053821, 0.0 ], [ 9.196059001915261, 48.787773623351562, 0.0 ], [ 9.196030525701062, 48.787729968930904, 0.0 ], [ 9.196025870394386, 48.787722693038965, 0.0 ], [ 9.196025870394386, 48.787722693038965, 11.99 ], [ 9.196025870394386, 48.787722693038965, 12.19 ], [ 9.196012864091012, 48.787702662201795, 14.613 ], [ 9.195999857798007, 48.787682631363097, 12.19 ], [ 9.195999857798007, 48.787682631363097, 11.99 ], [ 9.195999857798007, 48.787682631363097, 0.0 ], [ 9.196180923078479, 48.787630616930088, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000cad4", "Latitude": 48.78781, "Longitude": 9.19608, "X_coordina": 3514480.29, "Y_coordina": 5405611.49, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 122.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 44.4, "Total_wall": 200.8, "Total_wa00": 0.0, "Total_outw": 361.2, "Total_shar": 0.0, "Total_roof": 44.4, "Gross_volu": 278.2, "Is_Gross_v": "false", "Heated_vol": 278.2, "Ridge_mean": 6.3, "Eaves_mean": 6.26, "Storey_num": 3, "Average_St": 2.1, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.041, "Heated_are": 122.2, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19600331323071, 48.787871015553762, 0.0 ], [ 9.195966898115886, 48.787815594630921, 0.0 ], [ 9.196067626160792, 48.787786647598821, 0.0 ], [ 9.196070091482978, 48.787790689965995, 0.0 ], [ 9.196050379607298, 48.78779602902317, 0.0 ], [ 9.196081052181835, 48.787844535576269, 0.0 ], [ 9.196098046545123, 48.787840280225559, 0.0 ], [ 9.196099689746195, 48.787842885213479, 0.0 ], [ 9.19600331323071, 48.787871015553762, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000cad6", "Latitude": 48.78769, "Longitude": 9.19602, "X_coordina": 3514476.0, "Y_coordina": 5405598.72, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 100.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 29.4, "Total_wall": 168.5, "Total_wa00": 0.0, "Total_outw": 271.0, "Total_shar": 0.3, "Total_roof": 84.8, "Gross_volu": 343.3, "Is_Gross_v": "true", "Heated_vol": 313.8, "Ridge_mean": 11.7, "Eaves_mean": 0.05, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.883, "Heated_are": 100.4, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 70.0, "Total_Year": 8616.0, "January_He": 1759.0, "February_H": 1194.0, "March_Heat": 700.0, "April_Heat": 154.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 24.0, "October_He": 352.0, "November_H": 1087.0, "December_H": 1746.0, "PV_potenti": 1.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195988422561168, 48.787734042199475, 0.0 ], [ 9.195971472481888, 48.787739178710638, 0.0 ], [ 9.195950974711037, 48.787745391347812, 0.0 ], [ 9.195950974711037, 48.787745391347812, 10.62 ], [ 9.195949059348093, 48.787742786820829, 10.62 ], [ 9.19595164218828, 48.787742063036497, 10.62 ], [ 9.195948220422094, 48.787737033133958, 10.62 ], [ 9.195945772618133, 48.787737486917457, 10.62 ], [ 9.195927844130019, 48.787711529484426, 10.62 ], [ 9.195930153746065, 48.787710536394449, 10.62 ], [ 9.195926319174285, 48.787704338185975, 10.62 ], [ 9.195926319174285, 48.787704338185975, 0.0 ], [ 9.195944221325133, 48.787699065175907, 0.0 ], [ 9.195963360351444, 48.787693403386463, 0.0 ], [ 9.195978068074869, 48.787689062020917, 0.0 ], [ 9.195999857798007, 48.787682631363097, 0.0 ], [ 9.196025870394386, 48.787722693038965, 0.0 ], [ 9.196005658068072, 48.78772881527631, 0.0 ], [ 9.195988422561168, 48.787734042199475, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000cad7", "Latitude": 48.78738, "Longitude": 9.19629, "X_coordina": 3514496.3, "Y_coordina": 5405563.9, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 612.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 250.1, "Total_wall": 536.9, "Total_wa00": 0.0, "Total_outw": 868.9, "Total_shar": 0.0, "Total_roof": 250.1, "Gross_volu": 1991.2, "Is_Gross_v": "false", "Heated_vol": 1913.0, "Ridge_mean": 8.0, "Eaves_mean": 7.96, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.532, "Heated_are": 612.2, "Mean_Uvalu": 0.45, "Specific_d": "24,8", "Specific_s": 53.4, "Total_Year": 47909.0, "January_He": 7446.0, "February_H": 5408.0, "March_Heat": 3716.0, "April_Heat": 1205.0, "May_Heatin": 143.0, "June_Heati": 8, "July_Heati": 1, "August_Hea": 3, "September_": 323.0, "October_He": 2179.0, "November_H": 4963.0, "December_H": 7308.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196180849125858, 48.787297449869811, 0.0 ], [ 9.196210733874178, 48.787283550708217, 0.0 ], [ 9.19640263534211, 48.787463070906263, 0.0 ], [ 9.196372751242293, 48.787477149963422, 0.0 ], [ 9.196374936683041, 48.787479214480918, 0.0 ], [ 9.196293297208587, 48.787517301460277, 0.0 ], [ 9.196096479683742, 48.78733338319374, 0.0 ], [ 9.196178390479055, 48.787295116043005, 0.0 ], [ 9.196180849125858, 48.787297449869811, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c955", "Latitude": 48.78824, "Longitude": 9.20963, "X_coordina": 3515475.96, "Y_coordina": 5405662.06, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 146.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 54.3, "Total_wall": 89.8, "Total_wa00": 0.0, "Total_outw": 162.8, "Total_shar": 202.4, "Total_roof": 85.1, "Gross_volu": 513.3, "Is_Gross_v": "false", "Heated_vol": 459.0, "Ridge_mean": 11.7, "Eaves_mean": 7.14, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.475, "Heated_are": 146.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 44.7, "Total_Year": 8895.0, "January_He": 1583.0, "February_H": 1112.0, "March_Heat": 735.0, "April_Heat": 208.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 26.0, "October_He": 347.0, "November_H": 988.0, "December_H": 1560.0, "PV_potenti": 3.27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209549563955266, 48.788218906890343, 0.0 ], [ 9.209644754703918, 48.788234470278823, 0.0 ], [ 9.209631700284422, 48.788269564269363, 0.0 ], [ 9.209620125209193, 48.788300429153594, 0.0 ], [ 9.209525068933621, 48.788284505805635, 0.0 ], [ 9.209536374134531, 48.788254180963868, 0.0 ], [ 9.209549563955266, 48.788218906890343, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c7f2", "Latitude": 48.79545, "Longitude": 9.20341, "X_coordina": 3515017.0, "Y_coordina": 5406462.47, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2612, "PrimaryUsa": "non-heated", "PrimaryU00": 133.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 167.1, "Total_wall": 146.8, "Total_wa00": 0.0, "Total_outw": 570.7, "Total_shar": 0.0, "Total_roof": 167.1, "Gross_volu": 565.4, "Is_Gross_v": "false", "Heated_vol": 417.2, "Ridge_mean": 3.4, "Eaves_mean": 3.39, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.943, "Heated_are": 133.5, "Mean_Uvalu": 0.3, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203233418256733, 48.795429600210703, 0.0 ], [ 9.203266544831347, 48.795408859328724, 0.0 ], [ 9.203277873686034, 48.795416752603515, 0.0 ], [ 9.203327156993588, 48.795386091593237, 0.0 ], [ 9.203385303954605, 48.795426904125499, 0.0 ], [ 9.203410149385084, 48.795411483316599, 0.0 ], [ 9.203502827206551, 48.795475884682737, 0.0 ], [ 9.20342896994204, 48.795521786258988, 0.0 ], [ 9.203440162740236, 48.795529679758019, 0.0 ], [ 9.203406492455375, 48.795550601496913, 0.0 ], [ 9.203233418256733, 48.795429600210703, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c7ed", "Latitude": 48.79506, "Longitude": 9.20289, "X_coordina": 3514979.03, "Y_coordina": 5406418.75, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 3299.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 577.1, "Total_wall": 1684.6, "Total_wa00": 0.0, "Total_outw": 2244.0, "Total_shar": 419.4, "Total_roof": 590.9, "Gross_volu": 10837.7, "Is_Gross_v": "false", "Heated_vol": 10309.5, "Ridge_mean": 19.3, "Eaves_mean": 19.26, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.271, "Heated_are": 3299.0, "Mean_Uvalu": 0.37, "Specific_d": "14,6", "Specific_s": 50.2, "Total_Year": 213759.0, "January_He": 36061.0, "February_H": 27639.0, "March_Heat": 20851.0, "April_Heat": 8650.0, "May_Heatin": 1266.0, "June_Heati": 45, "July_Heati": 5, "August_Hea": 10, "September_": 1979.0, "October_He": 10702.0, "November_H": 23699.0, "December_H": 34653.0, "PV_potenti": 27.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202970645962964, 48.795240145126961, 0.0 ], [ 9.202602149069147, 48.795023988349989, 0.0 ], [ 9.202692252848998, 48.794956656899927, 0.0 ], [ 9.202760102103003, 48.794906000421506, 0.0 ], [ 9.202811124515561, 48.794935405499757, 0.0 ], [ 9.202846867605976, 48.794956024962161, 0.0 ], [ 9.202816065104521, 48.79497927949145, 0.0 ], [ 9.203097370593783, 48.795141095722592, 0.0 ], [ 9.20305949053493, 48.795231805458677, 0.0 ], [ 9.203058400956648, 48.795231627532843, 0.0 ], [ 9.203052606801631, 48.795246115440499, 0.0 ], [ 9.202978381909245, 48.795234646155507, 0.0 ], [ 9.202970645962964, 48.795240145126961, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c725", "Latitude": 48.78842, "Longitude": 9.2119, "X_coordina": 3515643.05, "Y_coordina": 5405682.74, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 112.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.7, "Total_wall": 62.1, "Total_wa00": 0.0, "Total_outw": 120.4, "Total_shar": 240.7, "Total_roof": 58.4, "Gross_volu": 376.8, "Is_Gross_v": "false", "Heated_vol": 349.9, "Ridge_mean": 10.8, "Eaves_mean": 6.79, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.45, "Heated_are": 112.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 44.1, "Total_Year": 6713.0, "January_He": 1243.0, "February_H": 855.0, "March_Heat": 491.0, "April_Heat": 81.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 248.0, "November_H": 793.0, "December_H": 1217.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211797942443535, 48.788459296154464, 0.0 ], [ 9.211804969303589, 48.788415130716466, 0.0 ], [ 9.211862824142178, 48.788419160783263, 0.0 ], [ 9.211921223720905, 48.788423279742211, 0.0 ], [ 9.21191487891725, 48.788467803626766, 0.0 ], [ 9.211856614997053, 48.788463594491397, 0.0 ], [ 9.211797942443535, 48.788459296154464, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c51e", "Latitude": 48.79444, "Longitude": 9.20179, "X_coordina": 3514898.26, "Y_coordina": 5406350.63, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1251.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 192.8, "Total_wall": 849.8, "Total_wa00": 0.0, "Total_outw": 1045.7, "Total_shar": 449.7, "Total_roof": 192.8, "Gross_volu": 3912.3, "Is_Gross_v": "false", "Heated_vol": 3912.3, "Ridge_mean": 20.3, "Eaves_mean": 20.28, "Storey_num": 8, "Average_St": 2.5, "Number_of_": 20, "Number_o00": 28, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.316, "Heated_are": 1251.9, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 29.4, "Total_Year": 56620.0, "January_He": 9124.0, "February_H": 6412.0, "March_Heat": 4071.0, "April_Heat": 846.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 69.0, "October_He": 1781.0, "November_H": 5599.0, "December_H": 8867.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201732654198123, 48.794402074797063, 0.0 ], [ 9.201750161537831, 48.794389544751752, 0.0 ], [ 9.201862034021982, 48.794455892137151, 0.0 ], [ 9.20184520973481, 48.794469050466979, 0.0 ], [ 9.201885456899406, 48.794492989506125, 0.0 ], [ 9.201804850985521, 48.794553019878869, 0.0 ], [ 9.20161044377668, 48.794439067555025, 0.0 ], [ 9.201692815131127, 48.794378045065869, 0.0 ], [ 9.201732654198123, 48.794402074797063, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c358", "Latitude": 48.79541, "Longitude": 9.20829, "X_coordina": 3515375.22, "Y_coordina": 5406459.63, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1031.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 225.3, "Total_wall": 819.0, "Total_wa00": 0.0, "Total_outw": 1093.4, "Total_shar": 201.2, "Total_roof": 225.2, "Gross_volu": 3223.9, "Is_Gross_v": "false", "Heated_vol": 3223.9, "Ridge_mean": 16.0, "Eaves_mean": 15.98, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 13, "Number_o00": 34, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.394, "Heated_are": 1031.7, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 36.0, "Total_Year": 53471.0, "January_He": 8793.0, "February_H": 6385.0, "March_Heat": 4345.0, "April_Heat": 1277.0, "May_Heatin": 64.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 132.0, "October_He": 1996.0, "November_H": 5551.0, "December_H": 8587.0, "PV_potenti": 8.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208142294017607, 48.795364360445454, 0.0 ], [ 9.208139063163244, 48.795372998945247, 0.0 ], [ 9.208180058127015, 48.7953793993399, 0.0 ], [ 9.20818328860268, 48.7953706709161, 0.0 ], [ 9.208342229226178, 48.795395472149131, 0.0 ], [ 9.208339134883479, 48.79540420033107, 0.0 ], [ 9.208392114762196, 48.795412377438481, 0.0 ], [ 9.208358611392386, 48.795505958546364, 0.0 ], [ 9.208247339190669, 48.795488624724328, 0.0 ], [ 9.208195175898092, 48.795480446074201, 0.0 ], [ 9.208125443639339, 48.795469601447124, 0.0 ], [ 9.208128538023082, 48.795460873270962, 0.0 ], [ 9.208095442418907, 48.795455717513839, 0.0 ], [ 9.208107015968322, 48.795423863665135, 0.0 ], [ 9.20812881051002, 48.795362226649729, 0.0 ], [ 9.208142294017607, 48.795364360445454, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2ff", "Latitude": 48.7927, "Longitude": 9.20293, "X_coordina": 3514982.09, "Y_coordina": 5406156.91, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 604.7, "SecondaryU": "office and administration", "Secondar00": 141.9, "BuildingTy": "GMH", "Footprint_": 177.3, "Total_wall": 376.0, "Total_wa00": 0.0, "Total_outw": 606.5, "Total_shar": 381.0, "Total_roof": 251.0, "Gross_volu": 2510.2, "Is_Gross_v": "false", "Heated_vol": 2332.9, "Ridge_mean": 16.9, "Eaves_mean": 11.29, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 12, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.334, "Heated_are": 746.5, "Mean_Uvalu": 0.48, "Specific_d": "15,6", "Specific_s": 40.4, "Total_Year": 41775.0, "January_He": 7186.0, "February_H": 5262.0, "March_Heat": 3427.0, "April_Heat": 806.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 104.0, "October_He": 1674.0, "November_H": 4642.0, "December_H": 6994.0, "PV_potenti": 12.06 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202951184266844, 48.792743541536673, 0.0 ], [ 9.202951866579458, 48.792743989952108, 0.0 ], [ 9.202864613958802, 48.792808528977709, 0.0 ], [ 9.202809913539232, 48.792777781536252, 0.0 ], [ 9.20275248466756, 48.792745420248018, 0.0 ], [ 9.202899847089517, 48.792635543849251, 0.0 ], [ 9.202901203733775, 48.792634462375901, 0.0 ], [ 9.202911299032236, 48.79264037954497, 0.0 ], [ 9.202960819961035, 48.792669247672428, 0.0 ], [ 9.203011431921043, 48.792698653396599, 0.0 ], [ 9.202951184266844, 48.792743541536673, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2ac", "Latitude": 48.78938, "Longitude": 9.21488, "X_coordina": 3515861.61, "Y_coordina": 5405790.25, "LOD": "LOD2", "Year_of_co": 1908, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 2401.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 869.3, "Total_wall": 1024.0, "Total_wa00": 0.0, "Total_outw": 1691.8, "Total_shar": 53.2, "Total_roof": 1082.7, "Gross_volu": 9093.8, "Is_Gross_v": "false", "Heated_vol": 8224.5, "Ridge_mean": 13.0, "Eaves_mean": 8.12, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.339, "Heated_are": 2401.7, "Mean_Uvalu": 0.5, "Specific_d": "32,9", "Specific_s": 7.6, "Total_Year": 97220.0, "January_He": 6914.0, "February_H": 2917.0, "March_Heat": 425.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 1486.0, "December_H": 6538.0, "PV_potenti": 55.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214783264849636, 48.789240778829019, 0.0 ], [ 9.214847410965618, 48.789251809707466, 0.0 ], [ 9.215068995495601, 48.789290153195864, 0.0 ], [ 9.215043145091757, 48.789355486032861, 0.0 ], [ 9.215020929115218, 48.789411460018961, 0.0 ], [ 9.215011235079011, 48.789435937348372, 0.0 ], [ 9.215005040979117, 48.789451415778721, 0.0 ], [ 9.214979864335181, 48.789515218639941, 0.0 ], [ 9.214955897853272, 48.789575602137909, 0.0 ], [ 9.214607107614347, 48.789515104567933, 0.0 ], [ 9.214630670432051, 48.789455711054245, 0.0 ], [ 9.214655443436026, 48.789392898181113, 0.0 ], [ 9.214662310034857, 48.789375530119422, 0.0 ], [ 9.214672678161318, 48.789349522860647, 0.0 ], [ 9.214693682726995, 48.789296608603365, 0.0 ], [ 9.214720071776949, 48.789229836061544, 0.0 ], [ 9.214783264849636, 48.789240778829019, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2ad", "Latitude": 48.79064, "Longitude": 9.21514, "X_coordina": 3515880.27, "Y_coordina": 5405929.92, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 426.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 235.3, "Total_wall": 286.1, "Total_wa00": 0.0, "Total_outw": 594.5, "Total_shar": 0.0, "Total_roof": 235.3, "Gross_volu": 1091.7, "Is_Gross_v": "false", "Heated_vol": 1091.7, "Ridge_mean": 4.6, "Eaves_mean": 4.64, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.693, "Heated_are": 426.9, "Mean_Uvalu": 0.38, "Specific_d": "32,9", "Specific_s": 7.6, "Total_Year": 17291.0, "January_He": 1162.0, "February_H": 542.0, "March_Heat": 132.0, "April_Heat": 5.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 10.0, "November_H": 309.0, "December_H": 1103.0, "PV_potenti": 10.86 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215191829924398, 48.790581946476692, 0.0 ], [ 9.215229234783022, 48.790704262624359, 0.0 ], [ 9.215003037263045, 48.790734449863358, 0.0 ], [ 9.214965632930872, 48.790612133642, 0.0 ], [ 9.215191829924398, 48.790581946476692, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2ae", "Latitude": 48.7897, "Longitude": 9.21506, "X_coordina": 3515874.83, "Y_coordina": 5405825.84, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 57.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 68.0, "Total_wall": 87.4, "Total_wa00": 0.0, "Total_outw": 262.9, "Total_shar": 0.0, "Total_roof": 68.0, "Gross_volu": 247.5, "Is_Gross_v": "false", "Heated_vol": 179.5, "Ridge_mean": 3.6, "Eaves_mean": 3.64, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.036, "Heated_are": 57.4, "Mean_Uvalu": 0.35, "Specific_d": "32,9", "Specific_s": 28.3, "Total_Year": 3515.0, "January_He": 486.0, "February_H": 295.0, "March_Heat": 127.0, "April_Heat": 13.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 24.0, "November_H": 217.0, "December_H": 467.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215053083462067, 48.789770375138637, 0.0 ], [ 9.214953930356447, 48.789752215831506, 0.0 ], [ 9.214985851799375, 48.789674372300425, 0.0 ], [ 9.215084865212779, 48.789691722528488, 0.0 ], [ 9.215053083462067, 48.789770375138637, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2af", "Latitude": 48.79026, "Longitude": 9.2152, "X_coordina": 3515884.59, "Y_coordina": 5405887.45, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 1114.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 320.7, "Total_wall": 642.9, "Total_wa00": 0.0, "Total_outw": 1044.2, "Total_shar": 0.0, "Total_roof": 320.7, "Gross_volu": 2699.2, "Is_Gross_v": "false", "Heated_vol": 2699.2, "Ridge_mean": 8.8, "Eaves_mean": 8.83, "Storey_num": 4, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.476, "Heated_are": 1114.8, "Mean_Uvalu": 0.45, "Specific_d": "32,9", "Specific_s": 4.0, "Total_Year": 41091.0, "January_He": 1730.0, "February_H": 670.0, "March_Heat": 111.0, "April_Heat": 3.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 6.0, "November_H": 324.0, "December_H": 1616.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214988319692715, 48.790315792952477, 0.0 ], [ 9.215041397851129, 48.790188721691656, 0.0 ], [ 9.21522458729555, 48.790222190763707, 0.0 ], [ 9.215239002706999, 48.790187902920124, 0.0 ], [ 9.215320722650308, 48.790202767402704, 0.0 ], [ 9.21530630767502, 48.790237145179248, 0.0 ], [ 9.215253229750147, 48.790364126637002, 0.0 ], [ 9.214988319692715, 48.790315792952477, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2b0", "Latitude": 48.78992, "Longitude": 9.21524, "X_coordina": 3515887.71, "Y_coordina": 5405849.97, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 37.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 47.5, "Total_wall": 73.5, "Total_wa00": 0.0, "Total_outw": 238.6, "Total_shar": 0.0, "Total_roof": 47.5, "Gross_volu": 146.8, "Is_Gross_v": "false", "Heated_vol": 118.3, "Ridge_mean": 3.1, "Eaves_mean": 3.1, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.267, "Heated_are": 37.9, "Mean_Uvalu": 0.27, "Specific_d": "32,9", "Specific_s": 24.2, "Total_Year": 2159.0, "January_He": 278.0, "February_H": 165.0, "March_Heat": 70.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 12.0, "November_H": 117.0, "December_H": 267.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215269201273886, 48.789930035428078, 0.0 ], [ 9.215251959173381, 48.789971612374543, 0.0 ], [ 9.215122025318511, 48.789948025399596, 0.0 ], [ 9.215139403610392, 48.789906448217963, 0.0 ], [ 9.215269201273886, 48.789930035428078, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2b1", "Latitude": 48.78995, "Longitude": 9.2154, "X_coordina": 3515899.76, "Y_coordina": 5405853.31, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 33.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 42.3, "Total_wall": 68.1, "Total_wa00": 0.0, "Total_outw": 231.5, "Total_shar": 0.0, "Total_roof": 42.3, "Gross_volu": 140.5, "Is_Gross_v": "false", "Heated_vol": 105.8, "Ridge_mean": 3.3, "Eaves_mean": 3.32, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 1.245, "Heated_are": 33.9, "Mean_Uvalu": 0.27, "Specific_d": "32,9", "Specific_s": 24.8, "Total_Year": 1952.0, "January_He": 254.0, "February_H": 151.0, "March_Heat": 64.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 11.0, "November_H": 108.0, "December_H": 245.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.215293227819148, 48.789979178740204, 0.0 ], [ 9.215310605595555, 48.78993751161029, 0.0 ], [ 9.2154262390514, 48.789958607262541, 0.0 ], [ 9.215408860978599, 48.790000184486644, 0.0 ], [ 9.215293227819148, 48.789979178740204, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2b2", "Latitude": 48.78969, "Longitude": 9.21493, "X_coordina": 3515865.11, "Y_coordina": 5405824.17, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2501, "PrimaryUsa": "industry", "PrimaryU00": 22.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 24.5, "Total_wall": 47.9, "Total_wa00": 0.0, "Total_outw": 134.0, "Total_shar": 0.0, "Total_roof": 24.5, "Gross_volu": 56.1, "Is_Gross_v": "false", "Heated_vol": 56.1, "Ridge_mean": 2.3, "Eaves_mean": 2.28, "Storey_num": 1, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.728, "Heated_are": 22.3, "Mean_Uvalu": 0.28, "Specific_d": "32,8", "Specific_s": 22.2, "Total_Year": 1230.0, "January_He": 155.0, "February_H": 88.0, "March_Heat": 33.0, "April_Heat": 3.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 6.0, "November_H": 64.0, "December_H": 149.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.214876428142034, 48.78967313774254, 0.0 ], [ 9.214922462760125, 48.789681414737693, 0.0 ], [ 9.214897545025527, 48.789742159691585, 0.0 ], [ 9.214851646447542, 48.789733882432749, 0.0 ], [ 9.214876428142034, 48.78967313774254, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c2a7", "Latitude": 48.79168, "Longitude": 9.21296, "X_coordina": 3515719.98, "Y_coordina": 5406044.93, "LOD": "LOD2", "Year_of_co": 1974, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 516.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 132.0, "Total_wall": 359.2, "Total_wa00": 0.0, "Total_outw": 553.6, "Total_shar": 169.6, "Total_roof": 210.3, "Gross_volu": 1685.2, "Is_Gross_v": "false", "Heated_vol": 1613.6, "Ridge_mean": 15.5, "Eaves_mean": 10.2, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.428, "Heated_are": 516.4, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 44.7, "Total_Year": 31280.0, "January_He": 5555.0, "February_H": 4018.0, "March_Heat": 2557.0, "April_Heat": 542.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 1287.0, "November_H": 3641.0, "December_H": 5414.0, "PV_potenti": 9.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212824035032414, 48.791737009123473, 0.0 ], [ 9.212895276161818, 48.791622944238739, 0.0 ], [ 9.212959043631832, 48.791640361439939, 0.0 ], [ 9.213016543460245, 48.791656081650807, 0.0 ], [ 9.21294489350673, 48.79176996751864, 0.0 ], [ 9.212824035032414, 48.791737009123473, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c200", "Latitude": 48.79248, "Longitude": 9.20146, "X_coordina": 3514874.22, "Y_coordina": 5406132.01, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1151.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 203.1, "Total_wall": 873.1, "Total_wa00": 0.0, "Total_outw": 1198.6, "Total_shar": 27.9, "Total_roof": 265.0, "Gross_volu": 3800.3, "Is_Gross_v": "false", "Heated_vol": 3597.1, "Ridge_mean": 19.4, "Eaves_mean": 16.54, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 18, "Number_o00": 28, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.367, "Heated_are": 1151.1, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 34.7, "Total_Year": 58143.0, "January_He": 9953.0, "February_H": 6973.0, "March_Heat": 4233.0, "April_Heat": 783.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 75.0, "October_He": 1942.0, "November_H": 6190.0, "December_H": 9743.0, "PV_potenti": 10.92 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201511719078331, 48.792523868229594, 0.0 ], [ 9.20142324909324, 48.792590656386182, 0.0 ], [ 9.201281374754528, 48.792508174751312, 0.0 ], [ 9.201281988345716, 48.792491447891237, 0.0 ], [ 9.201392446636811, 48.792409694073925, 0.0 ], [ 9.201543191456244, 48.792498184929613, 0.0 ], [ 9.201544692148975, 48.792499081539063, 0.0 ], [ 9.201511719078331, 48.792523868229594, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c1e6", "Latitude": 48.78761, "Longitude": 9.19954, "X_coordina": 3514734.65, "Y_coordina": 5405590.62, "LOD": "LOD2", "Year_of_co": 1923, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 323.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 113.2, "Total_wall": 295.7, "Total_wa00": 0.0, "Total_outw": 547.0, "Total_shar": 0.0, "Total_roof": 180.5, "Gross_volu": 1123.0, "Is_Gross_v": "false", "Heated_vol": 1009.8, "Ridge_mean": 12.7, "Eaves_mean": 7.84, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 4, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.563, "Heated_are": 323.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 49.3, "Total_Year": 21056.0, "January_He": 3940.0, "February_H": 2744.0, "March_Heat": 1660.0, "April_Heat": 337.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 45.0, "October_He": 828.0, "November_H": 2490.0, "December_H": 3879.0, "PV_potenti": 6.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199478601077471, 48.787703904699079, 0.0 ], [ 9.199400629673635, 48.787602515921066, 0.0 ], [ 9.199509355859746, 48.787566358136587, 0.0 ], [ 9.199587464225393, 48.787667926451633, 0.0 ], [ 9.199478601077471, 48.787703904699079, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c06f", "Latitude": 48.79394, "Longitude": 9.20316, "X_coordina": 3514999.12, "Y_coordina": 5406295.02, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 1812.9, "SecondaryU": "retail", "Secondar00": 356.4, "BuildingTy": "GMH", "Footprint_": 445.5, "Total_wall": 1450.4, "Total_wa00": 0.0, "Total_outw": 1987.2, "Total_shar": 55.1, "Total_roof": 445.5, "Gross_volu": 7224.4, "Is_Gross_v": "false", "Heated_vol": 6778.9, "Ridge_mean": 16.7, "Eaves_mean": 16.74, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 35, "Number_o00": 55, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.337, "Heated_are": 2169.3, "Mean_Uvalu": 0.41, "Specific_d": "25,2", "Specific_s": 33.7, "Total_Year": 127745.0, "January_He": 17733.0, "February_H": 12687.0, "March_Heat": 8278.0, "April_Heat": 2001.0, "May_Heatin": 77.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 212.0, "October_He": 3775.0, "November_H": 11009.0, "December_H": 17236.0, "PV_potenti": 20.64 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202926213774948, 48.793875093908021, 0.0 ], [ 9.203001254831875, 48.793819478808423, 0.0 ], [ 9.203057323336008, 48.793851662518406, 0.0 ], [ 9.203352236885127, 48.794014263474978, 0.0 ], [ 9.203227938208856, 48.794106564630759, 0.0 ], [ 9.203116067610742, 48.794040937952339, 0.0 ], [ 9.202950581452939, 48.793943842495068, 0.0 ], [ 9.202885232892328, 48.793905470357437, 0.0 ], [ 9.202926213774948, 48.793875093908021, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000c070", "Latitude": 48.79392, "Longitude": 9.20294, "X_coordina": 3514983.03, "Y_coordina": 5406292.22, "LOD": "LOD2", "Year_of_co": 1992, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 21.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 25.9, "Total_wall": 28.7, "Total_wa00": 0.0, "Total_outw": 95.6, "Total_shar": 83.9, "Total_roof": 25.9, "Gross_volu": 92.2, "Is_Gross_v": "false", "Heated_vol": 66.2, "Ridge_mean": 3.6, "Eaves_mean": 3.57, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.995, "Heated_are": 21.2, "Mean_Uvalu": 0.4, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20284873031045, 48.793932601655378, 0.0 ], [ 9.202885232892328, 48.793905470357437, 0.0 ], [ 9.202950581452939, 48.793943842495068, 0.0 ], [ 9.202914078878583, 48.793970973813522, 0.0 ], [ 9.20284873031045, 48.793932601655378, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000bf6c", "Latitude": 48.79153, "Longitude": 9.20382, "X_coordina": 3515047.9999999995, "Y_coordina": 5406026.75, "LOD": "LOD2", "Year_of_co": 1968, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 102.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 45.4, "Total_wall": 65.1, "Total_wa00": 0.0, "Total_outw": 139.3, "Total_shar": 205.9, "Total_roof": 58.5, "Gross_volu": 365.5, "Is_Gross_v": "false", "Heated_vol": 320.1, "Ridge_mean": 9.6, "Eaves_mean": 6.44, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.495, "Heated_are": 102.4, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 45.9, "Total_Year": 6327.0, "January_He": 1191.0, "February_H": 814.0, "March_Heat": 461.0, "April_Heat": 73.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 232.0, "November_H": 757.0, "December_H": 1168.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20371540037821, 48.791569408648044, 0.0 ], [ 9.203729072901906, 48.791517678387926, 0.0 ], [ 9.203780269225126, 48.791523522762041, 0.0 ], [ 9.20383296298639, 48.791529454386527, 0.0 ], [ 9.203819835681474, 48.791581363541106, 0.0 ], [ 9.203765643711654, 48.791575164790835, 0.0 ], [ 9.20371540037821, 48.791569408648044, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000be71", "Latitude": 48.7911, "Longitude": 9.20984, "X_coordina": 3515490.37, "Y_coordina": 5405979.86, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 416.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 163.3, "Total_wall": 247.1, "Total_wa00": 0.0, "Total_outw": 535.7, "Total_shar": 136.6, "Total_roof": 243.7, "Gross_volu": 1463.5, "Is_Gross_v": "false", "Heated_vol": 1300.2, "Ridge_mean": 11.8, "Eaves_mean": 6.53, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.477, "Heated_are": 416.1, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 45.2, "Total_Year": 25411.0, "January_He": 4553.0, "February_H": 3193.0, "March_Heat": 2084.0, "April_Heat": 555.0, "May_Heatin": 25.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 72.0, "October_He": 1003.0, "November_H": 2861.0, "December_H": 4474.0, "PV_potenti": 10.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209892993352481, 48.791174341100231, 0.0 ], [ 9.209666400751326, 48.791143640296838, 0.0 ], [ 9.20967902361955, 48.791102791994518, 0.0 ], [ 9.20969245367124, 48.791059694130439, 0.0 ], [ 9.209919585039968, 48.791089134970349, 0.0 ], [ 9.209892993352481, 48.791174341100231, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000be18", "Latitude": 48.79012, "Longitude": 9.19882, "X_coordina": 3514680.87, "Y_coordina": 5405869.59, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 1891.0, "SecondaryU": "office and administration", "Secondar00": 312.6, "BuildingTy": "GMH", "Footprint_": 390.8, "Total_wall": 1377.9, "Total_wa00": 0.0, "Total_outw": 1737.5, "Total_shar": 273.4, "Total_roof": 390.8, "Gross_volu": 6886.4, "Is_Gross_v": "false", "Heated_vol": 6886.4, "Ridge_mean": 18.2, "Eaves_mean": 18.17, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 35, "Number_o00": 55, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.314, "Heated_are": 2203.7, "Mean_Uvalu": 0.38, "Specific_d": "15,7", "Specific_s": 31.1, "Total_Year": 103129.0, "January_He": 16766.0, "February_H": 11953.0, "March_Heat": 7761.0, "April_Heat": 1841.0, "May_Heatin": 64.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 177.0, "October_He": 3456.0, "November_H": 10300.0, "December_H": 16289.0, "PV_potenti": 18.46 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19855336408941, 48.790088929933191, 0.0 ], [ 9.198643194072998, 48.790022051681035, 0.0 ], [ 9.198662733885916, 48.790007450345691, 0.0 ], [ 9.198990806118992, 48.790201568551801, 0.0 ], [ 9.198881842580951, 48.790282508204534, 0.0 ], [ 9.198860016851, 48.790269686818718, 0.0 ], [ 9.198758117280001, 48.790209613913156, 0.0 ], [ 9.19855336408941, 48.790088929933191, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000be19", "Latitude": 48.7902, "Longitude": 9.19841, "X_coordina": 3514650.76, "Y_coordina": 5405877.85, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 1268.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 312.5, "Total_wall": 592.3, "Total_wa00": 0.0, "Total_outw": 798.2, "Total_shar": 684.4, "Total_roof": 312.5, "Gross_volu": 3965.3, "Is_Gross_v": "false", "Heated_vol": 3965.3, "Ridge_mean": 12.7, "Eaves_mean": 12.69, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.307, "Heated_are": 1268.9, "Mean_Uvalu": 0.39, "Specific_d": "14,6", "Specific_s": 54.6, "Total_Year": 87829.0, "January_He": 14969.0, "February_H": 11486.0, "March_Heat": 8732.0, "April_Heat": 3664.0, "May_Heatin": 537.0, "June_Heati": 22, "July_Heati": 2, "August_Hea": 4, "September_": 947.0, "October_He": 4651.0, "November_H": 9922.0, "December_H": 14354.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198396149725424, 48.790082276777696, 0.0 ], [ 9.198489179163502, 48.790136430334684, 0.0 ], [ 9.198485515297625, 48.790139134358611, 0.0 ], [ 9.198382796472337, 48.7902162859844, 0.0 ], [ 9.198517160287807, 48.790295187222114, 0.0 ], [ 9.198500338640025, 48.790308884610383, 0.0 ], [ 9.19843520498552, 48.790357465698804, 0.0 ], [ 9.198208491389611, 48.790224229641623, 0.0 ], [ 9.198271995873377, 48.790176640645178, 0.0 ], [ 9.198270768202571, 48.790175923369922, 0.0 ], [ 9.198396149725424, 48.790082276777696, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000be1a", "Latitude": 48.79008, "Longitude": 9.19851, "X_coordina": 3514658.53, "Y_coordina": 5405864.48, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 109.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 44.6, "Total_wall": 123.5, "Total_wa00": 0.0, "Total_outw": 222.7, "Total_shar": 191.4, "Total_roof": 44.6, "Gross_volu": 359.4, "Is_Gross_v": "false", "Heated_vol": 341.8, "Ridge_mean": 8.0, "Eaves_mean": 8.05, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.61, "Heated_are": 109.4, "Mean_Uvalu": 0.69, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198435501360667, 48.790052983795398, 0.0 ], [ 9.198527582394592, 48.790108218039443, 0.0 ], [ 9.198539723386183, 48.790115480921571, 0.0 ], [ 9.198497655581233, 48.790146217399119, 0.0 ], [ 9.198485515297625, 48.790139134358611, 0.0 ], [ 9.198489179163502, 48.790136430334684, 0.0 ], [ 9.198396149725424, 48.790082276777696, 0.0 ], [ 9.198435501360667, 48.790052983795398, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000bda4", "Latitude": 48.78807, "Longitude": 9.19818, "X_coordina": 3514634.4, "Y_coordina": 5405640.81, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 27.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 32.8, "Total_wall": 43.9, "Total_wa00": 0.0, "Total_outw": 138.8, "Total_shar": 49.8, "Total_roof": 32.8, "Gross_volu": 105.7, "Is_Gross_v": "false", "Heated_vol": 85.1, "Ridge_mean": 3.2, "Eaves_mean": 3.23, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.136, "Heated_are": 27.2, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198110810729009, 48.788055169735195, 0.0 ], [ 9.198180417155067, 48.788071775765303, 0.0 ], [ 9.198153126867153, 48.788122449747242, 0.0 ], [ 9.198082842066869, 48.788106384409645, 0.0 ], [ 9.198110810729009, 48.788055169735195, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000bda5", "Latitude": 48.78798, "Longitude": 9.19825, "X_coordina": 3514639.58, "Y_coordina": 5405630.83, "LOD": "LOD2", "Year_of_co": 2002, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 295.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 117.2, "Total_wall": 306.0, "Total_wa00": 0.0, "Total_outw": 568.9, "Total_shar": 0.0, "Total_roof": 229.1, "Gross_volu": 1039.0, "Is_Gross_v": "false", "Heated_vol": 921.8, "Ridge_mean": 12.6, "Eaves_mean": 2.82, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 4, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.673, "Heated_are": 295.0, "Mean_Uvalu": 0.43, "Specific_d": "15,8", "Specific_s": 52.6, "Total_Year": 20179.0, "January_He": 3810.0, "February_H": 2653.0, "March_Heat": 1626.0, "April_Heat": 356.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 820.0, "November_H": 2427.0, "December_H": 3749.0, "PV_potenti": 8.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19823731749122, 48.78793751172784, 0.0 ], [ 9.198291937935512, 48.787950006999573, 0.0 ], [ 9.198273571470065, 48.787985918164338, 0.0 ], [ 9.198261148962606, 48.787983053003153, 0.0 ], [ 9.198246996181606, 48.788010782848197, 0.0 ], [ 9.198263750126035, 48.788014620721412, 0.0 ], [ 9.198256052674688, 48.788029741148527, 0.0 ], [ 9.198239298725808, 48.78802590327421, 0.0 ], [ 9.198218637129775, 48.788066494410984, 0.0 ], [ 9.198165446909107, 48.788054356338193, 0.0 ], [ 9.198112324226607, 48.788042083239148, 0.0 ], [ 9.198169112466633, 48.787931154617354, 0.0 ], [ 9.198194216047423, 48.787936893505645, 0.0 ], [ 9.198233185394082, 48.787945683909399, 0.0 ], [ 9.19823731749122, 48.78793751172784, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000bac0", "Latitude": 48.78829, "Longitude": 9.21088, "X_coordina": 3515568.09, "Y_coordina": 5405668.44, "LOD": "LOD2", "Year_of_co": 1925, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 150.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 58.2, "Total_wall": 137.0, "Total_wa00": 0.0, "Total_outw": 196.7, "Total_shar": 108.4, "Total_roof": 90.6, "Gross_volu": 479.8, "Is_Gross_v": "false", "Heated_vol": 470.2, "Ridge_mean": 10.6, "Eaves_mean": 5.97, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.602, "Heated_are": 150.5, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 53.3, "Total_Year": 10399.0, "January_He": 1993.0, "February_H": 1352.0, "March_Heat": 837.0, "April_Heat": 196.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 399.0, "November_H": 1226.0, "December_H": 1978.0, "PV_potenti": 3.24 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21088933973736, 48.788279319636935, 0.0 ], [ 9.21088934422507, 48.78828039061947, 0.0 ], [ 9.210888087707, 48.788336151882078, 0.0 ], [ 9.210887739293064, 48.788351085242411, 0.0 ], [ 9.210788529034625, 48.788350096071945, 0.0 ], [ 9.210790129620264, 48.788278330467605, 0.0 ], [ 9.21088933973736, 48.788279319636935, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000b89a", "Latitude": 48.79106, "Longitude": 9.19966, "X_coordina": 3514742.52, "Y_coordina": 5405973.38, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 600.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 170.4, "Total_wall": 617.5, "Total_wa00": 0.0, "Total_outw": 861.2, "Total_shar": 33.7, "Total_roof": 170.4, "Gross_volu": 2002.6, "Is_Gross_v": "false", "Heated_vol": 1875.1, "Ridge_mean": 11.7, "Eaves_mean": 11.75, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 19, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.5, "Heated_are": 600.0, "Mean_Uvalu": 0.41, "Specific_d": "15,8", "Specific_s": 40.2, "Total_Year": 33644.0, "January_He": 5958.0, "February_H": 4202.0, "March_Heat": 2577.0, "April_Heat": 517.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 59.0, "October_He": 1241.0, "November_H": 3734.0, "December_H": 5834.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199508525563365, 48.791098650012593, 0.0 ], [ 9.199513274998383, 48.791095134763282, 0.0 ], [ 9.199504408119193, 48.791089934555743, 0.0 ], [ 9.199526254941887, 48.791073620531257, 0.0 ], [ 9.199530483881349, 48.791076131065012, 0.0 ], [ 9.199555722730928, 48.791057203372809, 0.0 ], [ 9.199551494148398, 48.791054782762963, 0.0 ], [ 9.199577547411016, 48.791035314112946, 0.0 ], [ 9.199586277836197, 48.791040424627823, 0.0 ], [ 9.199658464658338, 48.790985895707593, 0.0 ], [ 9.199745087795783, 48.791036822099578, 0.0 ], [ 9.199569907009876, 48.791167784832858, 0.0 ], [ 9.199541941087279, 48.791151107503843, 0.0 ], [ 9.199486826226925, 48.791117841333673, 0.0 ], [ 9.199484643708738, 48.791116586183904, 0.0 ], [ 9.199508525563365, 48.791098650012593, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000b6a9", "Latitude": 48.78809, "Longitude": 9.21204, "X_coordina": 3515653.38, "Y_coordina": 5405646.52, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 502.5, "SecondaryU": "retail", "Secondar00": 127.5, "BuildingTy": "MFH", "Footprint_": 159.4, "Total_wall": 398.2, "Total_wa00": 0.0, "Total_outw": 608.8, "Total_shar": 269.3, "Total_roof": 247.6, "Gross_volu": 2128.2, "Is_Gross_v": "false", "Heated_vol": 1968.9, "Ridge_mean": 16.0, "Eaves_mean": 10.63, "Storey_num": 5, "Average_St": 3.0, "Number_of_": 8, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.395, "Heated_are": 630.0, "Mean_Uvalu": 0.47, "Specific_d": "27,4", "Specific_s": 36.7, "Total_Year": 40413.0, "January_He": 5703.0, "February_H": 3975.0, "March_Heat": 2523.0, "April_Heat": 639.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 65.0, "October_He": 1111.0, "November_H": 3475.0, "December_H": 5621.0, "PV_potenti": 11.44 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212131597517544, 48.788095660228493, 0.0 ], [ 9.212117881485584, 48.788134802285093, 0.0 ], [ 9.212104569525948, 48.788172954435304, 0.0 ], [ 9.212033212370757, 48.788161845381737, 0.0 ], [ 9.211868573711708, 48.788136250380504, 0.0 ], [ 9.211865985781619, 48.78813571559968, 0.0 ], [ 9.211879301697985, 48.788098462706117, 0.0 ], [ 9.211893692662249, 48.788057970580908, 0.0 ], [ 9.212131597517544, 48.788095660228493, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000b6aa", "Latitude": 48.78818, "Longitude": 9.21199, "X_coordina": 3515649.39, "Y_coordina": 5405656.09, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 163.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 90.3, "Total_wall": 88.1, "Total_wa00": 0.0, "Total_outw": 170.5, "Total_shar": 284.8, "Total_roof": 90.3, "Gross_volu": 428.1, "Is_Gross_v": "false", "Heated_vol": 428.1, "Ridge_mean": 4.7, "Eaves_mean": 4.73, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.628, "Heated_are": 163.8, "Mean_Uvalu": 0.35, "Specific_d": "73,0", "Specific_s": 45.8, "Total_Year": 19470.0, "January_He": 1791.0, "February_H": 1292.0, "March_Heat": 849.0, "April_Heat": 228.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 43.0, "October_He": 423.0, "November_H": 1141.0, "December_H": 1728.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211976071839681, 48.788198099884603, 0.0 ], [ 9.211856266032804, 48.78818672019559, 0.0 ], [ 9.211868573711708, 48.788136250380504, 0.0 ], [ 9.212033212370757, 48.788161845381737, 0.0 ], [ 9.212011745504718, 48.788267095584146, 0.0 ], [ 9.211962189145996, 48.788262330929165, 0.0 ], [ 9.211976071839681, 48.788198099884603, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000b4c7", "Latitude": 48.78753, "Longitude": 9.19343, "X_coordina": 3514286.05, "Y_coordina": 5405580.23, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1564.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 283.3, "Total_wall": 1174.7, "Total_wa00": 0.0, "Total_outw": 1625.4, "Total_shar": 126.9, "Total_roof": 365.5, "Gross_volu": 5171.7, "Is_Gross_v": "false", "Heated_vol": 4888.4, "Ridge_mean": 21.9, "Eaves_mean": 13.43, "Storey_num": 7, "Average_St": 3.0, "Number_of_": 25, "Number_o00": 34, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.367, "Heated_are": 1564.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 80630.0, "January_He": 13819.0, "February_H": 9767.0, "March_Heat": 5978.0, "April_Heat": 1107.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 111.0, "October_He": 2792.0, "November_H": 8721.0, "December_H": 13529.0, "PV_potenti": 15.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.1934159082709, 48.787489078445816, 0.0 ], [ 9.193482962446753, 48.787444183813562, 0.0 ], [ 9.193486236798284, 48.78744633647991, 0.0 ], [ 9.193537670402918, 48.787479881498484, 0.0 ], [ 9.193574642320215, 48.787503918896562, 0.0 ], [ 9.19347379368333, 48.787572520290027, 0.0 ], [ 9.193484435698458, 48.787579606378976, 0.0 ], [ 9.193363083040516, 48.787660022124271, 0.0 ], [ 9.19320323135827, 48.787566859745993, 0.0 ], [ 9.19327990129665, 48.787509809403986, 0.0 ], [ 9.193283993194548, 48.787512230474803, 0.0 ], [ 9.193336501946357, 48.78754226675521, 0.0 ], [ 9.193377223008765, 48.787514951508733, 0.0 ], [ 9.1934159082709, 48.787489078445816, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000b4c8", "Latitude": 48.78748, "Longitude": 9.19339, "X_coordina": 3514283.2, "Y_coordina": 5405574.86, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 79.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 43.6, "Total_wall": 54.5, "Total_wa00": 0.0, "Total_outw": 122.2, "Total_shar": 127.1, "Total_roof": 43.6, "Gross_volu": 183.3, "Is_Gross_v": "false", "Heated_vol": 183.3, "Ridge_mean": 4.2, "Eaves_mean": 4.23, "Storey_num": 2, "Average_St": 2.1, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.774, "Heated_are": 79.3, "Mean_Uvalu": 0.38, "Specific_d": "15,8", "Specific_s": 33.3, "Total_Year": 3899.0, "January_He": 687.0, "February_H": 456.0, "March_Heat": 258.0, "April_Heat": 49.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 4.0, "October_He": 107.0, "November_H": 395.0, "December_H": 687.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193372406056532, 48.787465501581345, 0.0 ], [ 9.193390667795624, 48.787472305112317, 0.0 ], [ 9.1934159082709, 48.787489078445816, 0.0 ], [ 9.193377223008765, 48.787514951508733, 0.0 ], [ 9.193336501946357, 48.78754226675521, 0.0 ], [ 9.193283993194548, 48.787512230474803, 0.0 ], [ 9.193334600499862, 48.787472399259208, 0.0 ], [ 9.19335090936042, 48.787466796609245, 0.0 ], [ 9.193372406056532, 48.787465501581345, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000b3e6", "Latitude": 48.78952, "Longitude": 9.19673, "X_coordina": 3514527.62, "Y_coordina": 5405802.46, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 908.1, "SecondaryU": "retail", "Secondar00": 153.9, "BuildingTy": "GMH", "Footprint_": 192.4, "Total_wall": 803.2, "Total_wa00": 0.0, "Total_outw": 1086.1, "Total_shar": 125.0, "Total_roof": 247.1, "Gross_volu": 3420.3, "Is_Gross_v": "false", "Heated_vol": 3319.0, "Ridge_mean": 19.8, "Eaves_mean": 15.77, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 17, "Number_o00": 30, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.371, "Heated_are": 1062.1, "Mean_Uvalu": 0.49, "Specific_d": "24,1", "Specific_s": 37.0, "Total_Year": 64870.0, "January_He": 9781.0, "February_H": 6801.0, "March_Heat": 4152.0, "April_Heat": 855.0, "May_Heatin": 29.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 93.0, "October_He": 1900.0, "November_H": 6024.0, "December_H": 9610.0, "PV_potenti": 10.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196780604087458, 48.78960054027597, 0.0 ], [ 9.196778719553938, 48.789605848990689, 0.0 ], [ 9.196771910764259, 48.789604781541847, 0.0 ], [ 9.196700962152528, 48.789593392528701, 0.0 ], [ 9.196670157971834, 48.789616105898126, 0.0 ], [ 9.196612322049504, 48.78958212360282, 0.0 ], [ 9.196552029889466, 48.789546436921661, 0.0 ], [ 9.196614319051735, 48.789501098998379, 0.0 ], [ 9.196613773281912, 48.789500740235674, 0.0 ], [ 9.19665000489597, 48.789473881125346, 0.0 ], [ 9.196703113797083, 48.789482333164536, 0.0 ], [ 9.196702843723873, 48.789482873167678, 0.0 ], [ 9.196816145000758, 48.789501473615488, 0.0 ], [ 9.196814529140045, 48.789505882635332, 0.0 ], [ 9.196813712241545, 48.789505794107889, 0.0 ], [ 9.196801730950419, 48.789539266176895, 0.0 ], [ 9.196802547849444, 48.789539354704445, 0.0 ], [ 9.196796623485543, 48.789555641007013, 0.0 ], [ 9.19679285407317, 48.789566168513971, 0.0 ], [ 9.196792037173726, 48.789566079986372, 0.0 ], [ 9.19677965109609, 48.789600451980846, 0.0 ], [ 9.196780604087458, 48.78960054027597, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000ae64", "Latitude": 48.78764, "Longitude": 9.19413, "X_coordina": 3514336.9, "Y_coordina": 5405592.2, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1102.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 208.7, "Total_wall": 870.6, "Total_wa00": 0.0, "Total_outw": 1205.8, "Total_shar": 0.0, "Total_roof": 304.8, "Gross_volu": 3652.6, "Is_Gross_v": "false", "Heated_vol": 3443.9, "Ridge_mean": 20.8, "Eaves_mean": 14.6, "Storey_num": 7, "Average_St": 2.8, "Number_of_": 18, "Number_o00": 26, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.396, "Heated_are": 1102.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 37.1, "Total_Year": 58396.0, "January_He": 10200.0, "February_H": 7056.0, "March_Heat": 4354.0, "April_Heat": 930.0, "May_Heatin": 29.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 93.0, "October_He": 1961.0, "November_H": 6284.0, "December_H": 10034.0, "PV_potenti": 13.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19415668668754, 48.787610217933526, 0.0 ], [ 9.194157204318721, 48.787603292938606, 0.0 ], [ 9.194213687649984, 48.787605176010487, 0.0 ], [ 9.194201858044904, 48.787713553975948, 0.0 ], [ 9.193948829918396, 48.787702650038, 0.0 ], [ 9.193957056789307, 48.787612712517834, 0.0 ], [ 9.194006594882339, 48.787613348457803, 0.0 ], [ 9.194007515939113, 48.787605163852575, 0.0 ], [ 9.19415668668754, 48.787610217933526, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000aca8", "Latitude": 48.79125, "Longitude": 9.20348, "X_coordina": 3515023.15, "Y_coordina": 5405995.63, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 696.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 164.8, "Total_wall": 491.8, "Total_wa00": 0.0, "Total_outw": 744.4, "Total_shar": 247.0, "Total_roof": 194.9, "Gross_volu": 2253.3, "Is_Gross_v": "false", "Heated_vol": 2175.3, "Ridge_mean": 15.5, "Eaves_mean": 11.79, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 9, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.386, "Heated_are": 696.1, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 36.9, "Total_Year": 36744.0, "January_He": 6542.0, "February_H": 4439.0, "March_Heat": 2582.0, "April_Heat": 469.0, "May_Heatin": 13.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 47.0, "October_He": 1192.0, "November_H": 4000.0, "December_H": 6436.0, "PV_potenti": 10.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203376767275238, 48.791193497050429, 0.0 ], [ 9.203449612253797, 48.791201731274249, 0.0 ], [ 9.203526405849356, 48.791210408091523, 0.0 ], [ 9.203491028581327, 48.791346974648391, 0.0 ], [ 9.203418862048569, 48.79133828963446, 0.0 ], [ 9.203421812176632, 48.791327403666692, 0.0 ], [ 9.203343246265728, 48.791318010520556, 0.0 ], [ 9.203376767275238, 48.791193497050429, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000aa94", "Latitude": 48.79167, "Longitude": 9.20135, "X_coordina": 3514866.39, "Y_coordina": 5406041.73, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 776.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 179.8, "Total_wall": 487.1, "Total_wa00": 0.0, "Total_outw": 708.7, "Total_shar": 541.8, "Total_roof": 179.8, "Gross_volu": 2566.5, "Is_Gross_v": "false", "Heated_vol": 2426.9, "Ridge_mean": 14.3, "Eaves_mean": 14.28, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 10, "Number_o00": 17, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.341, "Heated_are": 776.6, "Mean_Uvalu": 0.36, "Specific_d": "15,8", "Specific_s": 29.5, "Total_Year": 35194.0, "January_He": 5611.0, "February_H": 4010.0, "March_Heat": 2588.0, "April_Heat": 567.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 1135.0, "November_H": 3471.0, "December_H": 5450.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201394275108314, 48.791676363948248, 0.0 ], [ 9.201419512436264, 48.79169115720326, 0.0 ], [ 9.201434438830777, 48.7916800704918, 0.0 ], [ 9.201436075594129, 48.791680966864767, 0.0 ], [ 9.201307437703882, 48.791776690673807, 0.0 ], [ 9.20130498219789, 48.791775256188643, 0.0 ], [ 9.201313123568736, 48.791769127151731, 0.0 ], [ 9.201277381932069, 48.791748147505551, 0.0 ], [ 9.201246090374658, 48.791750899902148, 0.0 ], [ 9.201244243072537, 48.791731389709021, 0.0 ], [ 9.201239877176373, 48.791728699630546, 0.0 ], [ 9.201241641044419, 48.791727347694128, 0.0 ], [ 9.201222678239198, 48.791716050456969, 0.0 ], [ 9.201214401128368, 48.791722269648353, 0.0 ], [ 9.201170065321399, 48.791696269263319, 0.0 ], [ 9.201178070958465, 48.791690230396561, 0.0 ], [ 9.20129870290857, 48.791600455683231, 0.0 ], [ 9.201343993893715, 48.791627083814376, 0.0 ], [ 9.20133422370481, 48.791634294784622, 0.0 ], [ 9.201355504828831, 48.79164675695678, 0.0 ], [ 9.201365139280067, 48.79163963614571, 0.0 ], [ 9.201399788861563, 48.791659808362553, 0.0 ], [ 9.201394275108314, 48.791676363948248, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a66a", "Latitude": 48.78925, "Longitude": 9.19632, "X_coordina": 3514498.05, "Y_coordina": 5405772.39, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2612, "PrimaryUsa": "non-heated", "PrimaryU00": 51.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 27.7, "Total_wall": 68.2, "Total_wa00": 0.0, "Total_outw": 156.7, "Total_shar": 0.0, "Total_roof": 27.7, "Gross_volu": 100.8, "Is_Gross_v": "false", "Heated_vol": 100.8, "Ridge_mean": 3.6, "Eaves_mean": 3.61, "Storey_num": 2, "Average_St": 1.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.226, "Heated_are": 51.8, "Mean_Uvalu": 0.48, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196317250929546, 48.789262229104217, 0.0 ], [ 9.196321389071301, 48.789276429984326, 0.0 ], [ 9.196315180474246, 48.789289659343744, 0.0 ], [ 9.196299568995512, 48.789299667480897, 0.0 ], [ 9.196275900106578, 48.7893024954586, 0.0 ], [ 9.196258462625595, 48.789297939073066, 0.0 ], [ 9.196243588425805, 48.789287623203798, 0.0 ], [ 9.196239995017759, 48.78927351131626, 0.0 ], [ 9.196245525284239, 48.78926082265869, 0.0 ], [ 9.196260864580813, 48.789250814992684, 0.0 ], [ 9.196283308632331, 48.78924798910581, 0.0 ], [ 9.196302919687032, 48.789251552622332, 0.0 ], [ 9.196317250929546, 48.789262229104217, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a65d", "Latitude": 48.78892, "Longitude": 9.19682, "X_coordina": 3514534.22, "Y_coordina": 5405735.74, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 6400.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 1268.4, "Total_wall": 2657.4, "Total_wa00": 0.0, "Total_outw": 3592.7, "Total_shar": 1632.2, "Total_roof": 1296.7, "Gross_volu": 21268.3, "Is_Gross_v": "false", "Heated_vol": 20000.0, "Ridge_mean": 20.1, "Eaves_mean": 13.62, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.253, "Heated_are": 6400.0, "Mean_Uvalu": 0.38, "Specific_d": "24,8", "Specific_s": 32.9, "Total_Year": 369591.00000000006, "January_He": 47638.0, "February_H": 35523.0, "March_Heat": 25358.0, "April_Heat": 8570.0, "May_Heatin": 747.0, "June_Heati": 25, "July_Heati": 3, "August_Hea": 7, "September_": 1715.0, "October_He": 13425.0, "November_H": 31346.0, "December_H": 46259.0, "PV_potenti": 68.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196618419014454, 48.788808859812249, 0.0 ], [ 9.196622647267452, 48.788811280531192, 0.0 ], [ 9.196653178097311, 48.788788387790788, 0.0 ], [ 9.196649763920224, 48.788785336217245, 0.0 ], [ 9.196651935022247, 48.788783713884001, 0.0 ], [ 9.19665534884796, 48.788786675534432, 0.0 ], [ 9.196684251147284, 48.788764954574198, 0.0 ], [ 9.196680158984355, 48.788762533625075, 0.0 ], [ 9.196683958233647, 48.78875964957934, 0.0 ], [ 9.196653953267978, 48.7887429750254, 0.0 ], [ 9.196754907866756, 48.7886671767899, 0.0 ], [ 9.197193014369107, 48.788918843079571, 0.0 ], [ 9.197087304181785, 48.788996538231324, 0.0 ], [ 9.196820094157854, 48.788840977726736, 0.0 ], [ 9.19662456983589, 48.788989865606716, 0.0 ], [ 9.196889465108605, 48.789145070823814, 0.0 ], [ 9.196822838978042, 48.789194822569875, 0.0 ], [ 9.196785793927473, 48.789222402515051, 0.0 ], [ 9.196350393868068, 48.788966953282774, 0.0 ], [ 9.196425435254209, 48.788911432340626, 0.0 ], [ 9.196454203390006, 48.78889016128565, 0.0 ], [ 9.196486525761422, 48.788907821097148, 0.0 ], [ 9.19649005355593, 48.788905117368351, 0.0 ], [ 9.196494146072451, 48.788907628247223, 0.0 ], [ 9.196521420704491, 48.788887258960315, 0.0 ], [ 9.196517192098808, 48.788884748314644, 0.0 ], [ 9.196521941534693, 48.788881233187283, 0.0 ], [ 9.19652616978915, 48.788883653909714, 0.0 ], [ 9.196554529598295, 48.788862383526443, 0.0 ], [ 9.19655030099306, 48.788859872881979, 0.0 ], [ 9.196553693393831, 48.788857349229602, 0.0 ], [ 9.196557921647802, 48.788859769950896, 0.0 ], [ 9.196587366983294, 48.788837688393762, 0.0 ], [ 9.196583138378502, 48.788835177750478, 0.0 ], [ 9.196587073728143, 48.788832293475657, 0.0 ], [ 9.196591438422208, 48.788834803886445, 0.0 ], [ 9.196620204687436, 48.788813083174702, 0.0 ], [ 9.196615976083079, 48.788810572532633, 0.0 ], [ 9.196618419014454, 48.788808859812249, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a65e", "Latitude": 48.78916, "Longitude": 9.19697, "X_coordina": 3514545.8, "Y_coordina": 5405762.04, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3021, "PrimaryUsa": "education", "PrimaryU00": 422.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 178.6, "Total_wall": 246.2, "Total_wa00": 0.0, "Total_outw": 493.9, "Total_shar": 227.8, "Total_roof": 178.6, "Gross_volu": 1036.9, "Is_Gross_v": "false", "Heated_vol": 1036.9, "Ridge_mean": 6.7, "Eaves_mean": 6.7, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.582, "Heated_are": 422.6, "Mean_Uvalu": 0.41, "Specific_d": "24,8", "Specific_s": 41.1, "Total_Year": 27875.0, "January_He": 4080.0, "February_H": 2912.0, "March_Heat": 1937.0, "April_Heat": 517.0, "May_Heatin": 38.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 125.0, "October_He": 1101.0, "November_H": 2683.0, "December_H": 3984.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196970609096875, 48.789084143675616, 0.0 ], [ 9.196994070080654, 48.789097771937215, 0.0 ], [ 9.197032971961912, 48.789120438078371, 0.0 ], [ 9.197037173113388, 48.789122876813089, 0.0 ], [ 9.196993042093949, 48.789252352433628, 0.0 ], [ 9.196989647224695, 48.789254246637526, 0.0 ], [ 9.196992650718805, 48.789256669437826, 0.0 ], [ 9.196964290169594, 48.78927776008144, 0.0 ], [ 9.196853120670857, 48.789212575689199, 0.0 ], [ 9.196822838978042, 48.789194822569875, 0.0 ], [ 9.196844807945048, 48.789178409923593, 0.0 ], [ 9.196858350319365, 48.789168306333515, 0.0 ], [ 9.196889465108605, 48.789145070823814, 0.0 ], [ 9.196970609096875, 48.789084143675616, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a660", "Latitude": 48.78907, "Longitude": 9.19661, "X_coordina": 3514518.93, "Y_coordina": 5405752.0, "LOD": "LOD2", "Year_of_co": 2010, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 612.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 338.0, "Total_wall": 421.3, "Total_wa00": 0.0, "Total_outw": 968.7, "Total_shar": 565.8, "Total_roof": 338.0, "Gross_volu": 1589.9, "Is_Gross_v": "false", "Heated_vol": 1589.9, "Ridge_mean": 4.7, "Eaves_mean": 4.71, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.69, "Heated_are": 612.1, "Mean_Uvalu": 0.4, "Specific_d": "73,0", "Specific_s": 57.7, "Total_Year": 80023.0, "January_He": 7776.0, "February_H": 5966.0, "March_Heat": 4391.0, "April_Heat": 1636.0, "May_Heatin": 194.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 2, "September_": 373.0, "October_He": 2287.0, "November_H": 5215.0, "December_H": 7490.0, "PV_potenti": 16.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196697561958095, 48.789245753557815, 0.0 ], [ 9.196675578215206, 48.789261887437789, 0.0 ], [ 9.196605602547319, 48.789220731978951, 0.0 ], [ 9.196615644074024, 48.789213251172384, 0.0 ], [ 9.196549352792987, 48.78917460725021, 0.0 ], [ 9.196559394670118, 48.789167216371531, 0.0 ], [ 9.196493102790621, 48.789128392570447, 0.0 ], [ 9.196503144315692, 48.789120911773566, 0.0 ], [ 9.196437125071508, 48.789082177398384, 0.0 ], [ 9.196447166595716, 48.78907469660632, 0.0 ], [ 9.196384557422055, 48.78903793470343, 0.0 ], [ 9.196370173651243, 48.789048660145994, 0.0 ], [ 9.196275236228105, 48.788992709647822, 0.0 ], [ 9.196400204294621, 48.78889753721068, 0.0 ], [ 9.196421070912724, 48.788909011846627, 0.0 ], [ 9.196425435254209, 48.788911432340626, 0.0 ], [ 9.196350393868068, 48.788966953282774, 0.0 ], [ 9.196785793927473, 48.789222402515051, 0.0 ], [ 9.196822838978042, 48.789194822569875, 0.0 ], [ 9.196853120670857, 48.789212575689199, 0.0 ], [ 9.196761678810532, 48.789285120498775, 0.0 ], [ 9.196697561958095, 48.789245753557815, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a661", "Latitude": 48.78897, "Longitude": 9.1969, "X_coordina": 3514540.4, "Y_coordina": 5405741.12, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 1548.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 573.0, "Total_wall": 105.5, "Total_wa00": 0.0, "Total_outw": 201.5, "Total_shar": 1157.4, "Total_roof": 573.0, "Gross_volu": 4241.0, "Is_Gross_v": "false", "Heated_vol": 4241.0, "Ridge_mean": 7.4, "Eaves_mean": 7.4, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.295, "Heated_are": 1548.9, "Mean_Uvalu": 0.3, "Specific_d": "non calculated", "Specific_s": 64.7, "Total_Year": 100223.0, "January_He": 15728.0, "February_H": 13069.0, "March_Heat": 11880.0, "April_Heat": 8112.0, "May_Heatin": 4729.0, "June_Heati": 2223, "July_Heati": 1321, "August_Hea": 1744, "September_": 5300.0, "October_He": 8683.0, "November_H": 12193.0, "December_H": 15241.0, "PV_potenti": 27.15 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196820094157854, 48.788840977726736, 0.0 ], [ 9.197087304181785, 48.788996538231324, 0.0 ], [ 9.197054331201308, 48.78902132366148, 0.0 ], [ 9.197020136899864, 48.789047010408083, 0.0 ], [ 9.196970609096875, 48.789084143675616, 0.0 ], [ 9.196889465108605, 48.789145070823814, 0.0 ], [ 9.19662456983589, 48.788989865606716, 0.0 ], [ 9.196652114530538, 48.78896895628619, 0.0 ], [ 9.196820094157854, 48.788840977726736, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a604", "Latitude": 48.79158, "Longitude": 9.19808, "X_coordina": 3514626.59, "Y_coordina": 5406031.06, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 505.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 122.5, "Total_wall": 326.0, "Total_wa00": 0.0, "Total_outw": 485.7, "Total_shar": 337.4, "Total_roof": 143.4, "Gross_volu": 1703.6, "Is_Gross_v": "false", "Heated_vol": 1581.1, "Ridge_mean": 15.4, "Eaves_mean": 12.18, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 6, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.363, "Heated_are": 505.9, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 32.7, "Total_Year": 24566.0, "January_He": 4273.0, "February_H": 2890.0, "March_Heat": 1615.0, "April_Heat": 258.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 22.0, "October_He": 707.0, "November_H": 2556.0, "December_H": 4224.0, "PV_potenti": 7.35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198047851377009, 48.791525790644833, 0.0 ], [ 9.19809614178642, 48.791554213366098, 0.0 ], [ 9.198144431896234, 48.791582546143914, 0.0 ], [ 9.198071561386346, 48.791636895438671, 0.0 ], [ 9.198076881553751, 48.791640033613774, 0.0 ], [ 9.198034539647377, 48.791670680461856, 0.0 ], [ 9.197984201338812, 48.791640642611419, 0.0 ], [ 9.197933862736571, 48.791610514815751, 0.0 ], [ 9.198047851377009, 48.791525790644833, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a605", "Latitude": 48.79164, "Longitude": 9.19823, "X_coordina": 3514637.34, "Y_coordina": 5406037.49, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1131, "PrimaryUsa": "residential", "PrimaryU00": 458.5, "SecondaryU": "industry", "Secondar00": 99.0, "BuildingTy": "MFH", "Footprint_": 123.8, "Total_wall": 438.2, "Total_wa00": 0.0, "Total_outw": 608.1, "Total_shar": 202.1, "Total_roof": 123.8, "Gross_volu": 1543.8, "Is_Gross_v": "false", "Heated_vol": 1543.8, "Ridge_mean": 12.5, "Eaves_mean": 12.47, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 7, "Number_o00": 16, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.444, "Heated_are": 557.5, "Mean_Uvalu": 0.38, "Specific_d": "18,9", "Specific_s": 23.7, "Total_Year": 23744.0, "January_He": 3602.0, "February_H": 2358.0, "March_Heat": 1236.0, "April_Heat": 144.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 405.0, "November_H": 1986.0, "December_H": 3488.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198299675333464, 48.791674990151975, 0.0 ], [ 9.198231690893323, 48.79172591403632, 0.0 ], [ 9.198227348538008, 48.79172915876088, 0.0 ], [ 9.198164188249104, 48.791691859248431, 0.0 ], [ 9.198076881553751, 48.791640033613774, 0.0 ], [ 9.198071561386346, 48.791636895438671, 0.0 ], [ 9.198144431896234, 48.791582546143914, 0.0 ], [ 9.198299675333464, 48.791674990151975, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a606", "Latitude": 48.79172, "Longitude": 9.19821, "X_coordina": 3514635.82, "Y_coordina": 5406046.7, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 42.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 53.3, "Total_wall": 30.3, "Total_wa00": 0.0, "Total_outw": 102.5, "Total_shar": 146.5, "Total_roof": 53.3, "Gross_volu": 183.7, "Is_Gross_v": "false", "Heated_vol": 133.4, "Ridge_mean": 3.4, "Eaves_mean": 3.44, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.808, "Heated_are": 42.7, "Mean_Uvalu": 0.35, "Specific_d": "32,9", "Specific_s": 24.4, "Total_Year": 2443.0, "January_He": 307.0, "February_H": 196.0, "March_Heat": 86.0, "April_Heat": 9.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 137.0, "December_H": 292.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198113787444715, 48.791749676920467, 0.0 ], [ 9.198098781706999, 48.79174080029884, 0.0 ], [ 9.198164188249104, 48.791691859248431, 0.0 ], [ 9.198227348538008, 48.79172915876088, 0.0 ], [ 9.198231690893323, 48.79172591403632, 0.0 ], [ 9.198225784094376, 48.791746606632366, 0.0 ], [ 9.198173947608213, 48.791785452921971, 0.0 ], [ 9.198113787444715, 48.791749676920467, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000a2b5", "Latitude": 48.79377, "Longitude": 9.19987, "X_coordina": 3514756.96, "Y_coordina": 5406274.67, "LOD": "LOD2", "Year_of_co": 1990, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 221.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 138.1, "Total_wall": 140.1, "Total_wa00": 0.0, "Total_outw": 288.1, "Total_shar": 228.4, "Total_roof": 138.1, "Gross_volu": 761.2, "Is_Gross_v": "false", "Heated_vol": 690.6, "Ridge_mean": 5.5, "Eaves_mean": 5.51, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.566, "Heated_are": 221.0, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 11.3, "Total_Year": 9756.0, "January_He": 843.0, "February_H": 433.0, "March_Heat": 130.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 14.0, "November_H": 269.0, "December_H": 799.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199808918639702, 48.793710679262759, 0.0 ], [ 9.199836612083836, 48.793726907374698, 0.0 ], [ 9.199828198726381, 48.793733216624297, 0.0 ], [ 9.199843886947273, 48.793742361604075, 0.0 ], [ 9.199852300661448, 48.793736142276302, 0.0 ], [ 9.199886814980889, 48.793756315175486, 0.0 ], [ 9.199883015182051, 48.79375910940167, 0.0 ], [ 9.19991821182925, 48.793779730724872, 0.0 ], [ 9.199922011984969, 48.793777026420493, 0.0 ], [ 9.199936881833885, 48.793785723190453, 0.0 ], [ 9.199835239138643, 48.793860985798162, 0.0 ], [ 9.199707412720482, 48.793786121368534, 0.0 ], [ 9.199808918639702, 48.793710679262759, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009fe0", "Latitude": 48.79528, "Longitude": 9.20902, "X_coordina": 3515428.71, "Y_coordina": 5406445.28, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 156.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 60.7, "Total_wall": 136.7, "Total_wa00": 0.0, "Total_outw": 262.5, "Total_shar": 116.0, "Total_roof": 99.0, "Gross_volu": 516.0, "Is_Gross_v": "false", "Heated_vol": 488.4, "Ridge_mean": 11.1, "Eaves_mean": 6.36, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.595, "Heated_are": 156.3, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 57.2, "Total_Year": 11414.0, "January_He": 2118.0, "February_H": 1534.0, "March_Heat": 998.0, "April_Heat": 241.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 525.0, "November_H": 1406.0, "December_H": 2068.0, "PV_potenti": 3.99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209039720168423, 48.795282163441598, 0.0 ], [ 9.209025731688733, 48.795322294734397, 0.0 ], [ 9.209018604695762, 48.795343169932913, 0.0 ], [ 9.208902703132168, 48.795325395527684, 0.0 ], [ 9.208924635377503, 48.795264387575642, 0.0 ], [ 9.208982790616124, 48.79527336433442, 0.0 ], [ 9.209039720168423, 48.795282163441598, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009fe1", "Latitude": 48.79537, "Longitude": 9.2095, "X_coordina": 3515464.61, "Y_coordina": 5406455.0, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 43.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 80.3, "Total_wall": 54.9, "Total_wa00": 0.0, "Total_outw": 215.0, "Total_shar": 87.4, "Total_roof": 92.2, "Gross_volu": 288.7, "Is_Gross_v": "false", "Heated_vol": 208.4, "Ridge_mean": 5.0, "Eaves_mean": 1.97, "Storey_num": 1, "Average_St": 4.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.874, "Heated_are": 43.8, "Mean_Uvalu": 0.45, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.63 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209408965374456, 48.795343989464222, 0.0 ], [ 9.20945731548375, 48.795351634959431, 0.0 ], [ 9.209537399848411, 48.795364348340044, 0.0 ], [ 9.209522876676479, 48.795406728754166, 0.0 ], [ 9.209511023575365, 48.795436604935837, 0.0 ], [ 9.209430802621014, 48.795423801861894, 0.0 ], [ 9.209382996874393, 48.795416155365928, 0.0 ], [ 9.209408965374456, 48.795343989464222, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009ded", "Latitude": 48.79425, "Longitude": 9.21223, "X_coordina": 3515665.13, "Y_coordina": 5406331.37, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 1129.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 311.9, "Total_wall": 547.4, "Total_wa00": 0.0, "Total_outw": 799.7, "Total_shar": 184.8, "Total_roof": 311.9, "Gross_volu": 2955.0, "Is_Gross_v": "false", "Heated_vol": 2955.0, "Ridge_mean": 9.5, "Eaves_mean": 9.47, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.396, "Heated_are": 1129.6, "Mean_Uvalu": 0.43, "Specific_d": "32,9", "Specific_s": 3.4, "Total_Year": 41001.0, "January_He": 1494.0, "February_H": 646.0, "March_Heat": 118.0, "April_Heat": 3.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 5.0, "November_H": 268.0, "December_H": 1350.0, "PV_potenti": 15.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212239756798054, 48.794380851575468, 0.0 ], [ 9.212010537531455, 48.794279660163902, 0.0 ], [ 9.212140039834862, 48.794166297837165, 0.0 ], [ 9.212358898251644, 48.79426355146213, 0.0 ], [ 9.212239756798054, 48.794380851575468, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009db2", "Latitude": 48.79234, "Longitude": 9.20319, "X_coordina": 3515001.84, "Y_coordina": 5406116.67, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 622.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 133.8, "Total_wall": 545.9, "Total_wa00": 0.0, "Total_outw": 750.0, "Total_shar": 183.5, "Total_roof": 145.8, "Gross_volu": 1949.7, "Is_Gross_v": "false", "Heated_vol": 1944.0, "Ridge_mean": 15.6, "Eaves_mean": 13.19, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 8, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.424, "Heated_are": 622.1, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 43.4, "Total_Year": 36836.0, "January_He": 6636.0, "February_H": 4681.0, "March_Heat": 2866.0, "April_Heat": 548.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1417.0, "November_H": 4279.0, "December_H": 6474.0, "PV_potenti": 7.59 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203073139623729, 48.792408541022859, 0.0 ], [ 9.203077551774282, 48.792388929899424, 0.0 ], [ 9.203070743564506, 48.79238813259294, 0.0 ], [ 9.203071686095472, 48.792385613070302, 0.0 ], [ 9.203076724293831, 48.792386233650923, 0.0 ], [ 9.203101791868345, 48.792291320053046, 0.0 ], [ 9.203160886620287, 48.792298139930587, 0.0 ], [ 9.203234142547871, 48.79230664333496, 0.0 ], [ 9.203202917432074, 48.792427016203071, 0.0 ], [ 9.203135243569712, 48.792419042474108, 0.0 ], [ 9.203104878984393, 48.792415499088541, 0.0 ], [ 9.203105282925728, 48.792414419293031, 0.0 ], [ 9.203064569745937, 48.792409635217965, 0.0 ], [ 9.203065379807558, 48.792408015164916, 0.0 ], [ 9.203073139623729, 48.792408541022859, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009bd5", "Latitude": 48.78809, "Longitude": 9.21166, "X_coordina": 3515625.27, "Y_coordina": 5405646.23, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 180.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 54.4, "Total_wall": 91.3, "Total_wa00": 0.0, "Total_outw": 151.0, "Total_shar": 274.0, "Total_roof": 88.9, "Gross_volu": 618.5, "Is_Gross_v": "false", "Heated_vol": 564.1, "Ridge_mean": 14.3, "Eaves_mean": 8.45, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.399, "Heated_are": 180.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.7, "Total_Year": 10390.0, "January_He": 1834.0, "February_H": 1307.0, "March_Heat": 818.0, "April_Heat": 164.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 20.0, "October_He": 411.0, "November_H": 1188.0, "December_H": 1785.0, "PV_potenti": 3.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211549165458278, 48.78813413986137, 0.0 ], [ 9.211562412434471, 48.788080431101299, 0.0 ], [ 9.211627219414865, 48.788087326071683, 0.0 ], [ 9.211683312672033, 48.788093247862818, 0.0 ], [ 9.211670201152424, 48.788146776540366, 0.0 ], [ 9.211614380389884, 48.788140944165839, 0.0 ], [ 9.211549165458278, 48.78813413986137, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000099c6", "Latitude": 48.78852, "Longitude": 9.21231, "X_coordina": 3515672.86, "Y_coordina": 5405693.56, "LOD": "LOD2", "Year_of_co": 1926, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 90.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.1, "Total_wall": 50.9, "Total_wa00": 0.0, "Total_outw": 106.6, "Total_shar": 208.1, "Total_roof": 53.3, "Gross_volu": 324.9, "Is_Gross_v": "false", "Heated_vol": 282.8, "Ridge_mean": 9.4, "Eaves_mean": 6.05, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.481, "Heated_are": 90.5, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 46.0, "Total_Year": 5596.0, "January_He": 1045.0, "February_H": 719.0, "March_Heat": 415.0, "April_Heat": 70.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 211.0, "November_H": 668.0, "December_H": 1023.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212209704001353, 48.78851330163593, 0.0 ], [ 9.212268096890254, 48.78851580180563, 0.0 ], [ 9.212325672875471, 48.788518213528235, 0.0 ], [ 9.212320552834466, 48.788562645252632, 0.0 ], [ 9.212263929417832, 48.788560231771747, 0.0 ], [ 9.212205672566057, 48.788557731349279, 0.0 ], [ 9.212209704001353, 48.78851330163593, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000976b", "Latitude": 48.79466, "Longitude": 9.19519, "X_coordina": 3514412.87, "Y_coordina": 5406372.96, "LOD": "LOD2", "Year_of_co": 1972, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 284.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 234.5, "Total_wall": 177.3, "Total_wa00": 0.0, "Total_outw": 510.1, "Total_shar": 77.9, "Total_roof": 267.5, "Gross_volu": 1034.9, "Is_Gross_v": "false", "Heated_vol": 890.1, "Ridge_mean": 5.6, "Eaves_mean": 3.18, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.693, "Heated_are": 284.8, "Mean_Uvalu": 0.48, "Specific_d": "32,9", "Specific_s": 20.0, "Total_Year": 15049.0, "January_He": 1850.0, "February_H": 955.0, "March_Heat": 300.0, "April_Heat": 18.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 50.0, "November_H": 713.0, "December_H": 1804.0, "PV_potenti": 13.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195259154882784, 48.794772387881522, 0.0 ], [ 9.195261347575077, 48.794776250876303, 0.0 ], [ 9.195213483484856, 48.79478793216483, 0.0 ], [ 9.195154333432107, 48.794802420190543, 0.0 ], [ 9.19501955414986, 48.794582965281187, 0.0 ], [ 9.195078426544567, 48.794567128941104, 0.0 ], [ 9.195131180464308, 48.794552921562882, 0.0 ], [ 9.195265273343129, 48.794770758882834, 0.0 ], [ 9.195259154882784, 48.794772387881522, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000967d", "Latitude": 48.79036, "Longitude": 9.21325, "X_coordina": 3515741.51, "Y_coordina": 5405898.36, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 523.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 142.3, "Total_wall": 251.0, "Total_wa00": 0.0, "Total_outw": 429.2, "Total_shar": 356.8, "Total_roof": 207.4, "Gross_volu": 1778.4, "Is_Gross_v": "false", "Heated_vol": 1636.1, "Ridge_mean": 15.2, "Eaves_mean": 9.79, "Storey_num": 5, "Average_St": 2.8, "Number_of_": 7, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.354, "Heated_are": 523.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 36.0, "Total_Year": 27124.0, "January_He": 4706.0, "February_H": 3268.0, "March_Heat": 1969.0, "April_Heat": 344.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 35.0, "October_He": 947.0, "November_H": 2968.0, "December_H": 4585.0, "PV_potenti": 10.49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213234958475871, 48.790301877413604, 0.0 ], [ 9.213307722095534, 48.790419272838676, 0.0 ], [ 9.21324777384678, 48.79043566003741, 0.0 ], [ 9.213181300686871, 48.790453857756063, 0.0 ], [ 9.213107856083608, 48.790336283664836, 0.0 ], [ 9.213173786266019, 48.790318446687742, 0.0 ], [ 9.213234958475871, 48.790301877413604, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000912f", "Latitude": 48.78886, "Longitude": 9.19437, "X_coordina": 3514354.71, "Y_coordina": 5405728.28, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 4031.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 493.1, "Total_wall": 2367.0, "Total_wa00": 0.0, "Total_outw": 2842.2, "Total_shar": 322.0, "Total_roof": 493.1, "Gross_volu": 12599.2, "Is_Gross_v": "false", "Heated_vol": 12599.2, "Ridge_mean": 25.6, "Eaves_mean": 25.55, "Storey_num": 10, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.266, "Heated_are": 4031.7, "Mean_Uvalu": 0.43, "Specific_d": "14,6", "Specific_s": 49.7, "Total_Year": 259339.0, "January_He": 44664.0, "February_H": 33595.0, "March_Heat": 24668.0, "April_Heat": 9581.0, "May_Heatin": 1286.0, "June_Heati": 44, "July_Heati": 5, "August_Hea": 9, "September_": 2067.0, "October_He": 12511.0, "November_H": 28892.0, "December_H": 43112.0, "PV_potenti": 23.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194072020430143, 48.788804816565914, 0.0 ], [ 9.194187536063293, 48.788727827032105, 0.0 ], [ 9.194193236882603, 48.788723950701687, 0.0 ], [ 9.194584837936439, 48.788953314332296, 0.0 ], [ 9.194489447709909, 48.789026133784716, 0.0 ], [ 9.194471400578735, 48.789039832657657, 0.0 ], [ 9.194072020430143, 48.788804816565914, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009131", "Latitude": 48.78912, "Longitude": 9.19478, "X_coordina": 3514384.66, "Y_coordina": 5405757.57, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 4212.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 623.5, "Total_wall": 2473.6, "Total_wa00": 0.0, "Total_outw": 3062.2, "Total_shar": 562.9, "Total_roof": 623.5, "Gross_volu": 13163.4, "Is_Gross_v": "false", "Heated_vol": 13163.4, "Ridge_mean": 25.4, "Eaves_mean": 25.37, "Storey_num": 10, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.283, "Heated_are": 4212.3, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 3.0, "Total_Year": 151051.0, "January_He": 5039.0, "February_H": 1980.0, "March_Heat": 316.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 12.0, "November_H": 808.0, "December_H": 4474.0, "PV_potenti": 29.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194584837936439, 48.788953314332296, 0.0 ], [ 9.194601937246661, 48.788940875974163, 0.0 ], [ 9.19488660715627, 48.789108461838829, 0.0 ], [ 9.194872224090467, 48.789119456864, 0.0 ], [ 9.194976977858651, 48.789180337696372, 0.0 ], [ 9.194978750864662, 48.789181323854386, 0.0 ], [ 9.194984365756065, 48.789190396634773, 0.0 ], [ 9.194978820894637, 48.789199398387431, 0.0 ], [ 9.194778118980622, 48.78934847173872, 0.0 ], [ 9.194776618502132, 48.789347575040338, 0.0 ], [ 9.194732289845232, 48.789322021774453, 0.0 ], [ 9.194723696996444, 48.789317090505072, 0.0 ], [ 9.194653453444658, 48.789276653703524, 0.0 ], [ 9.194658609927941, 48.789272778270565, 0.0 ], [ 9.194739216639155, 48.789212932686993, 0.0 ], [ 9.19477645283891, 48.789234451383599, 0.0 ], [ 9.194805080892708, 48.789211922047528, 0.0 ], [ 9.194776845451775, 48.789195244012717, 0.0 ], [ 9.194489447709909, 48.789026133784716, 0.0 ], [ 9.194584837936439, 48.788953314332296, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009132", "Latitude": 48.78936, "Longitude": 9.19466, "X_coordina": 3514375.32, "Y_coordina": 5405783.59, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1476.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 289.3, "Total_wall": 752.3, "Total_wa00": 0.0, "Total_outw": 996.1, "Total_shar": 525.6, "Total_roof": 289.3, "Gross_volu": 4614.9, "Is_Gross_v": "false", "Heated_vol": 4614.9, "Ridge_mean": 15.9, "Eaves_mean": 15.95, "Storey_num": 6, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.288, "Heated_are": 1476.8, "Mean_Uvalu": 0.38, "Specific_d": "32,9", "Specific_s": 2.7, "Total_Year": 52472.0, "January_He": 1571.0, "February_H": 658.0, "March_Heat": 97.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 3.0, "November_H": 248.0, "December_H": 1367.0, "PV_potenti": 14.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194719490712593, 48.789320334868705, 0.0 ], [ 9.19472794781883, 48.789325356291599, 0.0 ], [ 9.194732289845232, 48.789322021774453, 0.0 ], [ 9.194776618502132, 48.789347575040338, 0.0 ], [ 9.194582025592119, 48.789493040767589, 0.0 ], [ 9.194445082954319, 48.789413779591598, 0.0 ], [ 9.1946442880765, 48.789264439581196, 0.0 ], [ 9.194658609927941, 48.789272778270565, 0.0 ], [ 9.194653453444658, 48.789276653703524, 0.0 ], [ 9.194723696996444, 48.789317090505072, 0.0 ], [ 9.194719490712593, 48.789320334868705, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009133", "Latitude": 48.78896, "Longitude": 9.1939, "X_coordina": 3514320.01, "Y_coordina": 5405739.14, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 95.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 119.7, "Total_wall": 157.8, "Total_wa00": 0.0, "Total_outw": 522.5, "Total_shar": 0.0, "Total_roof": 119.7, "Gross_volu": 412.2, "Is_Gross_v": "false", "Heated_vol": 298.3, "Ridge_mean": 3.5, "Eaves_mean": 3.45, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.109, "Heated_are": 95.5, "Mean_Uvalu": 0.32, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.193856867296923, 48.788947528098419, 0.0 ], [ 9.193902462102471, 48.78891337027126, 0.0 ], [ 9.193905736914092, 48.788915612848001, 0.0 ], [ 9.193944016095569, 48.78889009999255, 0.0 ], [ 9.193966388495243, 48.78890400047522, 0.0 ], [ 9.193977701388286, 48.788943817593328, 0.0 ], [ 9.193940438125075, 48.788950444783644, 0.0 ], [ 9.193943489279382, 48.788965277046053, 0.0 ], [ 9.193909348089843, 48.78896983072422, 0.0 ], [ 9.193913760826707, 48.78898484054185, 0.0 ], [ 9.193877851493584, 48.788989666959047, 0.0 ], [ 9.193882812392985, 48.789005665014955, 0.0 ], [ 9.193848943350176, 48.78901021821698, 0.0 ], [ 9.193853492162484, 48.789025227807734, 0.0 ], [ 9.193816358678539, 48.78903023611381, 0.0 ], [ 9.193820630800737, 48.789044077164142, 0.0 ], [ 9.19378621771301, 48.789048721187058, 0.0 ], [ 9.193790903638972, 48.789064000320359, 0.0 ], [ 9.193749829742563, 48.789070633861726, 0.0 ], [ 9.193735358200202, 48.78902335837401, 0.0 ], [ 9.193852929703306, 48.788949872741874, 0.0 ], [ 9.193856867296923, 48.788947528098419, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009134", "Latitude": 48.78952, "Longitude": 9.19444, "X_coordina": 3514359.18, "Y_coordina": 5405802.06, "LOD": "LOD2", "Year_of_co": 1979, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 1829.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 363.7, "Total_wall": 996.0, "Total_wa00": 0.0, "Total_outw": 1357.2, "Total_shar": 378.9, "Total_roof": 363.7, "Gross_volu": 5953.7, "Is_Gross_v": "false", "Heated_vol": 5717.3, "Ridge_mean": 16.4, "Eaves_mean": 16.37, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.296, "Heated_are": 1829.5, "Mean_Uvalu": 0.39, "Specific_d": "14,6", "Specific_s": 53.4, "Total_Year": 124429.0, "January_He": 21249.0, "February_H": 16420.0, "March_Heat": 12287.0, "April_Heat": 4893.0, "May_Heatin": 644.0, "June_Heati": 23, "July_Heati": 2, "August_Hea": 5, "September_": 1160.0, "October_He": 6444.0, "November_H": 14162.0, "December_H": 20410.0, "PV_potenti": 17.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194246242872865, 48.789622738006933, 0.0 ], [ 9.194201503885479, 48.789596645688476, 0.0 ], [ 9.194445082954319, 48.789413779591598, 0.0 ], [ 9.194582025592119, 48.789493040767589, 0.0 ], [ 9.194340621673822, 48.789675274015082, 0.0 ], [ 9.194338857691918, 48.789676625846553, 0.0 ], [ 9.194246242872865, 48.789622738006933, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00009135", "Latitude": 48.78966, "Longitude": 9.19433, "X_coordina": 3514351.47, "Y_coordina": 5405817.44, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 133.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 83.5, "Total_wall": 152.3, "Total_wa00": 0.0, "Total_outw": 313.7, "Total_shar": 94.5, "Total_roof": 83.5, "Gross_volu": 441.6, "Is_Gross_v": "false", "Heated_vol": 417.4, "Ridge_mean": 5.3, "Eaves_mean": 5.29, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.743, "Heated_are": 133.6, "Mean_Uvalu": 0.42, "Specific_d": "14,6", "Specific_s": 72.8, "Total_Year": 11680.0, "January_He": 2257.0, "February_H": 1643.0, "March_Heat": 1110.0, "April_Heat": 346.0, "May_Heatin": 37.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 78.0, "October_He": 586.0, "November_H": 1469.0, "December_H": 2203.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194328913691702, 48.789744714817203, 0.0 ], [ 9.194291401996646, 48.789722387130034, 0.0 ], [ 9.194190467165248, 48.789663747330977, 0.0 ], [ 9.194246242872865, 48.789622738006933, 0.0 ], [ 9.194338857691918, 48.789676625846553, 0.0 ], [ 9.194340621673822, 48.789675274015082, 0.0 ], [ 9.194384406771889, 48.789701008194868, 0.0 ], [ 9.194328913691702, 48.789744714817203, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000901c", "Latitude": 48.79377, "Longitude": 9.2023, "X_coordina": 3514935.93, "Y_coordina": 5406275.29, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 263.5, "SecondaryU": "retail", "Secondar00": 108.8, "BuildingTy": "MFH", "Footprint_": 136.0, "Total_wall": 159.6, "Total_wa00": 0.0, "Total_outw": 282.4, "Total_shar": 338.7, "Total_roof": 163.6, "Gross_volu": 1288.1, "Is_Gross_v": "false", "Heated_vol": 1163.4, "Ridge_mean": 11.3, "Eaves_mean": 7.64, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 5, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.372, "Heated_are": 372.3, "Mean_Uvalu": 0.46, "Specific_d": "32,5", "Specific_s": 43.2, "Total_Year": 28196.0, "January_He": 3770.0, "February_H": 2782.0, "March_Heat": 1872.0, "April_Heat": 520.0, "May_Heatin": 28.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 72.0, "October_He": 919.0, "November_H": 2444.0, "December_H": 3670.0, "PV_potenti": 7.22 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202146020121097, 48.793795804643018, 0.0 ], [ 9.20219663573789, 48.793758217653895, 0.0 ], [ 9.202257835825426, 48.793712788702152, 0.0 ], [ 9.202313906629058, 48.793745692158872, 0.0 ], [ 9.202347467050892, 48.793765326455613, 0.0 ], [ 9.20236683955053, 48.793776712707391, 0.0 ], [ 9.202369977505951, 48.793778595587995, 0.0 ], [ 9.202257617068136, 48.793861522669872, 0.0 ], [ 9.202238380301864, 48.793850046237978, 0.0 ], [ 9.202201954480303, 48.793828618469661, 0.0 ], [ 9.202146020121097, 48.793795804643018, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000901d", "Latitude": 48.7938, "Longitude": 9.2024, "X_coordina": 3514943.25, "Y_coordina": 5406279.6, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 165.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 91.6, "Total_wall": 148.8, "Total_wa00": 0.0, "Total_outw": 287.5, "Total_shar": 127.9, "Total_roof": 91.6, "Gross_volu": 454.2, "Is_Gross_v": "false", "Heated_vol": 454.2, "Ridge_mean": 4.9, "Eaves_mean": 4.95, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.731, "Heated_are": 165.4, "Mean_Uvalu": 0.42, "Specific_d": "32,9", "Specific_s": 13.0, "Total_Year": 7593.0, "January_He": 729.0, "February_H": 372.0, "March_Heat": 103.0, "April_Heat": 4.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 13.0, "November_H": 249.0, "December_H": 689.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202257617068136, 48.793861522669872, 0.0 ], [ 9.202369977505951, 48.793778595587995, 0.0 ], [ 9.20236683955053, 48.793776712707391, 0.0 ], [ 9.20239628664936, 48.793754989376126, 0.0 ], [ 9.202403787121437, 48.793758663059783, 0.0 ], [ 9.202457815084053, 48.793791210342469, 0.0 ], [ 9.202316826359905, 48.793896398930492, 0.0 ], [ 9.202313961328132, 48.793894695416128, 0.0 ], [ 9.202257617068136, 48.793861522669872, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000901e", "Latitude": 48.79369, "Longitude": 9.20211, "X_coordina": 3514921.66, "Y_coordina": 5406267.08, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 78.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 92.8, "Total_wall": 117.9, "Total_wa00": 0.0, "Total_outw": 384.3, "Total_shar": 1.0, "Total_roof": 92.8, "Gross_volu": 339.4, "Is_Gross_v": "false", "Heated_vol": 246.6, "Ridge_mean": 3.7, "Eaves_mean": 3.66, "Storey_num": 1, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.025, "Heated_are": 78.9, "Mean_Uvalu": 0.36, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202106319968799, 48.793772404273398, 0.0 ], [ 9.201953115084152, 48.793682569634107, 0.0 ], [ 9.202003323868832, 48.793645343136916, 0.0 ], [ 9.202173716307266, 48.793744769358504, 0.0 ], [ 9.202122554831345, 48.793781997601442, 0.0 ], [ 9.202121463120415, 48.793781280129018, 0.0 ], [ 9.202106319968799, 48.793772404273398, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000901f", "Latitude": 48.79371, "Longitude": 9.20236, "X_coordina": 3514940.32, "Y_coordina": 5406268.73, "LOD": "LOD2", "Year_of_co": 1965, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 51.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 28.7, "Total_wall": 30.7, "Total_wa00": 0.0, "Total_outw": 63.2, "Total_shar": 172.1, "Total_roof": 28.7, "Gross_volu": 135.7, "Is_Gross_v": "false", "Heated_vol": 135.7, "Ridge_mean": 4.7, "Eaves_mean": 4.73, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.649, "Heated_are": 51.9, "Mean_Uvalu": 0.38, "Specific_d": "32,9", "Specific_s": 8.2, "Total_Year": 2132.0, "January_He": 148.0, "February_H": 77.0, "March_Heat": 19.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 1.0, "November_H": 43.0, "December_H": 139.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202377187079895, 48.793743782496762, 0.0 ], [ 9.202347467050892, 48.793765326455613, 0.0 ], [ 9.202257835825426, 48.793712788702152, 0.0 ], [ 9.202287009644733, 48.793690796107832, 0.0 ], [ 9.202377187079895, 48.793743782496762, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00008fc4", "Latitude": 48.78863, "Longitude": 9.21064, "X_coordina": 3515550.23, "Y_coordina": 5405705.5, "LOD": "LOD2", "Year_of_co": 1977, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 102.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.2, "Total_wall": 71.7, "Total_wa00": 0.0, "Total_outw": 165.5, "Total_shar": 196.0, "Total_roof": 62.9, "Gross_volu": 367.6, "Is_Gross_v": "false", "Heated_vol": 320.4, "Ridge_mean": 9.5, "Eaves_mean": 6.09, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.531, "Heated_are": 102.5, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 50.0, "Total_Year": 6746.0, "January_He": 1306.0, "February_H": 878.0, "March_Heat": 490.0, "April_Heat": 82.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 11.0, "October_He": 249.0, "November_H": 823.0, "December_H": 1281.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21059922250692, 48.7886759624474, 0.0 ], [ 9.210547244118224, 48.788677855963662, 0.0 ], [ 9.210543519219803, 48.788633260642946, 0.0 ], [ 9.210542523337621, 48.788622921243764, 0.0 ], [ 9.210594501293535, 48.788620937806769, 0.0 ], [ 9.210647295777015, 48.788618952852751, 0.0 ], [ 9.210652017047877, 48.788673977491143, 0.0 ], [ 9.21059922250692, 48.7886759624474, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00008cc2", "Latitude": 48.7879, "Longitude": 9.21037, "X_coordina": 3515530.86, "Y_coordina": 5405624.31, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 182.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.5, "Total_wall": 104.0, "Total_wa00": 0.0, "Total_outw": 183.1, "Total_shar": 260.2, "Total_roof": 97.5, "Gross_volu": 576.7, "Is_Gross_v": "false", "Heated_vol": 570.1, "Ridge_mean": 13.4, "Eaves_mean": 7.04, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 6, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.45, "Heated_are": 182.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.5, "Total_Year": 11184.0, "January_He": 1986.0, "February_H": 1435.0, "March_Heat": 921.0, "April_Heat": 206.0, "May_Heatin": 7.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 28.0, "October_He": 473.0, "November_H": 1301.0, "December_H": 1938.0, "PV_potenti": 3.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.2103994664091, 48.787900376343558, 0.0 ], [ 9.210379827796544, 48.78795544550308, 0.0 ], [ 9.210321274007907, 48.787946829861312, 0.0 ], [ 9.210261767256029, 48.787938126006061, 0.0 ], [ 9.210280450003198, 48.787882249298924, 0.0 ], [ 9.210340230744618, 48.787891402262474, 0.0 ], [ 9.2103994664091, 48.787900376343558, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00008c9e", "Latitude": 48.78859, "Longitude": 9.21025, "X_coordina": 3515521.65, "Y_coordina": 5405700.86, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 91.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 45.7, "Total_wall": 56.4, "Total_wa00": 0.0, "Total_outw": 142.3, "Total_shar": 197.4, "Total_roof": 62.0, "Gross_volu": 331.1, "Is_Gross_v": "false", "Heated_vol": 285.4, "Ridge_mean": 9.0, "Eaves_mean": 5.53, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.532, "Heated_are": 91.3, "Mean_Uvalu": 0.61, "Specific_d": "15,8", "Specific_s": 59.4, "Total_Year": 6869.0, "January_He": 1354.0, "February_H": 924.0, "March_Heat": 538.0, "April_Heat": 103.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 283.0, "November_H": 870.0, "December_H": 1330.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210158898860392, 48.78862587005738, 0.0 ], [ 9.21015531302676, 48.78858190393553, 0.0 ], [ 9.21020620262359, 48.788580012583402, 0.0 ], [ 9.210257227929365, 48.788578031037389, 0.0 ], [ 9.210260995773837, 48.788632967509244, 0.0 ], [ 9.210211058746321, 48.788634857146754, 0.0 ], [ 9.21015989691692, 48.788636748997789, 0.0 ], [ 9.210158898860392, 48.78862587005738, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00008c75", "Latitude": 48.78766, "Longitude": 9.20617, "X_coordina": 3515221.91, "Y_coordina": 5405597.06, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 444.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 139.1, "Total_wall": 215.6, "Total_wa00": 0.0, "Total_outw": 398.5, "Total_shar": 306.7, "Total_roof": 209.5, "Gross_volu": 1528.1, "Is_Gross_v": "false", "Heated_vol": 1389.0, "Ridge_mean": 13.7, "Eaves_mean": 8.26, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.388, "Heated_are": 444.5, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 39.3, "Total_Year": 24492.0, "January_He": 4204.0, "February_H": 2976.0, "March_Heat": 1974.0, "April_Heat": 548.0, "May_Heatin": 26.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 61.0, "October_He": 910.0, "November_H": 2624.0, "December_H": 4128.0, "PV_potenti": 9.91 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206207433609917, 48.787737553639474, 0.0 ], [ 9.206014072934911, 48.787709034219084, 0.0 ], [ 9.206027659352111, 48.787670342736774, 0.0 ], [ 9.206043396986352, 48.787625262823362, 0.0 ], [ 9.206236485183956, 48.787653782682909, 0.0 ], [ 9.206220614206824, 48.787699492326922, 0.0 ], [ 9.206207433609917, 48.787737553639474, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00008a7b", "Latitude": 48.7944, "Longitude": 9.20467, "X_coordina": 3515110.0, "Y_coordina": 5406346.39, "LOD": "LOD2", "Year_of_co": 1935, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 782.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 143.9, "Total_wall": 699.9, "Total_wa00": 0.0, "Total_outw": 956.1, "Total_shar": 227.9, "Total_roof": 194.3, "Gross_volu": 2528.6, "Is_Gross_v": "false", "Heated_vol": 2444.1, "Ridge_mean": 18.0, "Eaves_mean": 15.59, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 13, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.421, "Heated_are": 782.1, "Mean_Uvalu": 0.62, "Specific_d": "15,8", "Specific_s": 46.9, "Total_Year": 49058.0, "January_He": 8887.0, "February_H": 6262.0, "March_Heat": 4016.0, "April_Heat": 1009.0, "May_Heatin": 55.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 131.0, "October_He": 1957.0, "November_H": 5592.0, "December_H": 8760.0, "PV_potenti": 6.49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.204644572565947, 48.794388753895149, 0.0 ], [ 9.204694291594731, 48.794398736969612, 0.0 ], [ 9.204719530159082, 48.794413259722312, 0.0 ], [ 9.204729572608841, 48.794406047984538, 0.0 ], [ 9.204762317785047, 48.794425683025288, 0.0 ], [ 9.204765591608764, 48.794427475675313, 0.0 ], [ 9.204751344194872, 48.794438201911447, 0.0 ], [ 9.204681869443244, 48.794490121385486, 0.0 ], [ 9.204671421216704, 48.794497963305091, 0.0 ], [ 9.204661052763969, 48.794491956853953, 0.0 ], [ 9.204662680532014, 48.794490605107704, 0.0 ], [ 9.204634438868984, 48.794473929513778, 0.0 ], [ 9.204632401690084, 48.794475012216473, 0.0 ], [ 9.204619440679165, 48.79446739174432, 0.0 ], [ 9.204621206014776, 48.794466399448446, 0.0 ], [ 9.204592419961324, 48.794449724811464, 0.0 ], [ 9.204590517424382, 48.794450447579976, 0.0 ], [ 9.204578238776259, 48.794443275508662, 0.0 ], [ 9.204580138388163, 48.794441833357084, 0.0 ], [ 9.204549168477948, 48.794423633888314, 0.0 ], [ 9.204546996291551, 48.794424986599992, 0.0 ], [ 9.204535263169824, 48.794418083325795, 0.0 ], [ 9.204537163147558, 48.794416731097805, 0.0 ], [ 9.204507421496325, 48.794399338748242, 0.0 ], [ 9.204505657257268, 48.794400600811123, 0.0 ], [ 9.204493787677141, 48.79439360785144, 0.0 ], [ 9.204558110639661, 48.794346643437045, 0.0 ], [ 9.204637785272951, 48.794393172210796, 0.0 ], [ 9.204644572565947, 48.794388753895149, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00008a23", "Latitude": 48.79242, "Longitude": 9.20275, "X_coordina": 3514969.48, "Y_coordina": 5406125.97, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 532.2, "SecondaryU": "retail", "Secondar00": 120.1, "BuildingTy": "GMH", "Footprint_": 150.1, "Total_wall": 371.8, "Total_wa00": 0.0, "Total_outw": 602.0, "Total_shar": 386.6, "Total_roof": 196.9, "Gross_volu": 2188.5, "Is_Gross_v": "false", "Heated_vol": 2038.4, "Ridge_mean": 16.7, "Eaves_mean": 12.25, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 10, "Number_o00": 15, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.343, "Heated_are": 652.3, "Mean_Uvalu": 0.47, "Specific_d": "26,4", "Specific_s": 37.9, "Total_Year": 41892.0, "January_He": 5965.0, "February_H": 4252.0, "March_Heat": 2790.0, "April_Heat": 702.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 85.0, "October_He": 1321.0, "November_H": 3738.0, "December_H": 5810.0, "PV_potenti": 9.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202670161358132, 48.792479481264756, 0.0 ], [ 9.202667448430114, 48.792481734129026, 0.0 ], [ 9.202641937417086, 48.792466761783686, 0.0 ], [ 9.202644377060874, 48.792464239630142, 0.0 ], [ 9.202587495945751, 48.792432596682787, 0.0 ], [ 9.202620198401032, 48.792408349701716, 0.0 ], [ 9.202631732047321, 48.792399696743011, 0.0 ], [ 9.202678139514886, 48.792365264263417, 0.0 ], [ 9.202804463837925, 48.792438689284502, 0.0 ], [ 9.20283092975308, 48.79245419945358, 0.0 ], [ 9.202783844349383, 48.792489262653085, 0.0 ], [ 9.202739879742737, 48.792521982325603, 0.0 ], [ 9.202670161358132, 48.792479481264756, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000896a", "Latitude": 48.78842, "Longitude": 9.21024, "X_coordina": 3515520.74, "Y_coordina": 5405682.44, "LOD": "LOD2", "Year_of_co": 1973, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 103.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 48.5, "Total_wall": 118.6, "Total_wa00": 0.0, "Total_outw": 244.8, "Total_shar": 99.3, "Total_roof": 65.5, "Gross_volu": 370.7, "Is_Gross_v": "false", "Heated_vol": 322.2, "Ridge_mean": 9.3, "Eaves_mean": 5.9, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.68, "Heated_are": 103.1, "Mean_Uvalu": 0.56, "Specific_d": "15,8", "Specific_s": 50.4, "Total_Year": 6829.0, "January_He": 1414.0, "February_H": 851.0, "March_Heat": 431.0, "April_Heat": 75.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 194.0, "November_H": 787.0, "December_H": 1432.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210243873734134, 48.788410977270438, 0.0 ], [ 9.210248741150799, 48.788468519522795, 0.0 ], [ 9.210196491537152, 48.788470593223408, 0.0 ], [ 9.210145874602418, 48.788472573997403, 0.0 ], [ 9.210144874299434, 48.788461155518718, 0.0 ], [ 9.210141563294686, 48.788417818359278, 0.0 ], [ 9.210141415942545, 48.788415120918515, 0.0 ], [ 9.210191488091896, 48.788413051217177, 0.0 ], [ 9.210243873734134, 48.788410977270438, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000874a", "Latitude": 48.78855, "Longitude": 9.21188, "X_coordina": 3515641.57, "Y_coordina": 5405697.42, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 86.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.4, "Total_wall": 50.6, "Total_wa00": 0.0, "Total_outw": 114.3, "Total_shar": 233.0, "Total_roof": 57.9, "Gross_volu": 340.8, "Is_Gross_v": "false", "Heated_vol": 298.4, "Ridge_mean": 10.1, "Eaves_mean": 6.03, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.472, "Heated_are": 86.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.4, "Total_Year": 5485.0, "January_He": 1039.0, "February_H": 710.0, "March_Heat": 402.0, "April_Heat": 66.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 205.0, "November_H": 662.0, "December_H": 1018.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211837845730683, 48.788595547017898, 0.0 ], [ 9.211777813653191, 48.788591610866234, 0.0 ], [ 9.211784433797332, 48.78854780587303, 0.0 ], [ 9.211844057557821, 48.78855174277242, 0.0 ], [ 9.211902183976083, 48.78855559247247, 0.0 ], [ 9.21189515491049, 48.788599218377477, 0.0 ], [ 9.211837845730683, 48.788595547017898, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000086ea", "Latitude": 48.79417, "Longitude": 9.20173, "X_coordina": 3514893.97, "Y_coordina": 5406320.22, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1387.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 192.6, "Total_wall": 820.2, "Total_wa00": 0.0, "Total_outw": 1008.2, "Total_shar": 446.7, "Total_roof": 192.6, "Gross_volu": 3838.0, "Is_Gross_v": "false", "Heated_vol": 3838.0, "Ridge_mean": 19.9, "Eaves_mean": 19.93, "Storey_num": 8, "Average_St": 2.5, "Number_of_": 22, "Number_o00": 42, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.314, "Heated_are": 1387.1, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 25.6, "Total_Year": 57478.0, "January_He": 8820.0, "February_H": 6384.0, "March_Heat": 3943.0, "April_Heat": 664.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 40.0, "October_He": 1625.0, "November_H": 5472.0, "December_H": 8551.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201725189988696, 48.794101923023021, 0.0 ], [ 9.201821098352768, 48.794158496746654, 0.0 ], [ 9.201786901564594, 48.794183825194693, 0.0 ], [ 9.201802863570482, 48.794193239198073, 0.0 ], [ 9.20170284960756, 48.794266881969492, 0.0 ], [ 9.201684431958981, 48.794256033476159, 0.0 ], [ 9.201648877960043, 48.794282353418943, 0.0 ], [ 9.20155597032128, 48.794227392925308, 0.0 ], [ 9.201725189988696, 48.794101923023021, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000086ca", "Latitude": 48.79041, "Longitude": 9.21048, "X_coordina": 3515537.77, "Y_coordina": 5405903.59, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1122, "PrimaryUsa": "residential", "PrimaryU00": 762.4, "SecondaryU": "office and administration", "Secondar00": 316.1, "BuildingTy": "RH", "Footprint_": 395.1, "Total_wall": 719.8, "Total_wa00": 0.0, "Total_outw": 1274.9, "Total_shar": 0.0, "Total_roof": 395.1, "Gross_volu": 2672.7, "Is_Gross_v": "false", "Heated_vol": 2672.7, "Ridge_mean": 6.8, "Eaves_mean": 6.76, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 13, "Number_o00": 28, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.565, "Heated_are": 1078.4, "Mean_Uvalu": 0.44, "Specific_d": "15,5", "Specific_s": 38.3, "Total_Year": 58052.0, "January_He": 10295.0, "February_H": 7200.0, "March_Heat": 4348.0, "April_Heat": 858.0, "May_Heatin": 32.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 103.0, "October_He": 2037.0, "November_H": 6388.0, "December_H": 10097.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210484248367706, 48.790340659179066, 0.0 ], [ 9.210459510604732, 48.790348168051409, 0.0 ], [ 9.210544542211883, 48.790471747528677, 0.0 ], [ 9.210569280399019, 48.790464328561107, 0.0 ], [ 9.210618711270115, 48.790536177065029, 0.0 ], [ 9.210435348598102, 48.790591005986364, 0.0 ], [ 9.210385918686136, 48.790519337249989, 0.0 ], [ 9.210433084561689, 48.790505222988699, 0.0 ], [ 9.210348053546833, 48.790381733352483, 0.0 ], [ 9.210301023856294, 48.790395847330579, 0.0 ], [ 9.210251593952044, 48.790324088610561, 0.0 ], [ 9.210435091195274, 48.790269079885817, 0.0 ], [ 9.210484248367706, 48.790340659179066, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00007b80", "Latitude": 48.78795, "Longitude": 9.19515, "X_coordina": 3514412.15, "Y_coordina": 5405627.21, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1255.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 276.6, "Total_wall": 741.9, "Total_wa00": 0.0, "Total_outw": 1040.7, "Total_shar": 372.8, "Total_roof": 319.8, "Gross_volu": 4046.6, "Is_Gross_v": "false", "Heated_vol": 3924.2, "Ridge_mean": 16.2, "Eaves_mean": 12.44, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 20, "Number_o00": 31, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.337, "Heated_are": 1255.7, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 31.6, "Total_Year": 59611.0, "January_He": 9961.0, "February_H": 6901.0, "March_Heat": 4247.0, "April_Heat": 837.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 1856.0, "November_H": 6067.0, "December_H": 9760.0, "PV_potenti": 16.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194953723644439, 48.787885026887409, 0.0 ], [ 9.194953983974171, 48.787881969042225, 0.0 ], [ 9.19517732850611, 48.78788833498156, 0.0 ], [ 9.195269422573144, 48.788019017776655, 0.0 ], [ 9.195202002880592, 48.788039634675968, 0.0 ], [ 9.195140835823599, 48.788058352543352, 0.0 ], [ 9.195129961745096, 48.788061698145455, 0.0 ], [ 9.195101487566228, 48.788018403188659, 0.0 ], [ 9.195116574062551, 48.788013431825952, 0.0 ], [ 9.195093447404316, 48.787980469026643, 0.0 ], [ 9.195078998127871, 48.787974288773164, 0.0 ], [ 9.195028366789826, 48.787972576061826, 0.0 ], [ 9.195026912347155, 48.787983549211482, 0.0 ], [ 9.194944021756402, 48.787980182543876, 0.0 ], [ 9.194944283132191, 48.78797739446798, 0.0 ], [ 9.194949528407294, 48.787926219026048, 0.0 ], [ 9.194953723644439, 48.787885026887409, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00007b81", "Latitude": 48.78804, "Longitude": 9.19507, "X_coordina": 3514406.42, "Y_coordina": 5405637.47, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 24.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 29.0, "Total_wall": 46.8, "Total_wa00": 0.0, "Total_outw": 152.7, "Total_shar": 41.6, "Total_roof": 29.0, "Gross_volu": 106.0, "Is_Gross_v": "false", "Heated_vol": 77.0, "Ridge_mean": 3.6, "Eaves_mean": 3.65, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 1.155, "Heated_are": 24.6, "Mean_Uvalu": 0.42, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194966232411886, 48.788057749058368, 0.0 ], [ 9.195032967956285, 48.78803614429556, 0.0 ], [ 9.195091629412904, 48.788073183398119, 0.0 ], [ 9.195026380002606, 48.788091998044465, 0.0 ], [ 9.194966232411886, 48.788057749058368, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00007a05", "Latitude": 48.7926, "Longitude": 9.20306, "X_coordina": 3514991.65, "Y_coordina": 5406145.32, "LOD": "LOD2", "Year_of_co": 1957, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 609.0, "SecondaryU": "retail", "Secondar00": 125.2, "BuildingTy": "GMH", "Footprint_": 156.5, "Total_wall": 533.1, "Total_wa00": 0.0, "Total_outw": 747.2, "Total_shar": 332.1, "Total_roof": 194.3, "Gross_volu": 2343.9, "Is_Gross_v": "false", "Heated_vol": 2294.3, "Ridge_mean": 16.8, "Eaves_mean": 12.55, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 12, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.382, "Heated_are": 734.2, "Mean_Uvalu": 0.48, "Specific_d": "25,6", "Specific_s": 38.2, "Total_Year": 46820.0, "January_He": 6978.0, "February_H": 4848.0, "March_Heat": 2965.0, "April_Heat": 603.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 73.0, "October_He": 1409.0, "November_H": 4313.0, "December_H": 6826.0, "PV_potenti": 8.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203126276069323, 48.792625073234817, 0.0 ], [ 9.203076475252486, 48.792661759967046, 0.0 ], [ 9.203031017217667, 48.792695381619104, 0.0 ], [ 9.203022559081328, 48.792690450733744, 0.0 ], [ 9.203011431921043, 48.792698653396599, 0.0 ], [ 9.202960819961035, 48.792669247672428, 0.0 ], [ 9.202911299032236, 48.79264037954497, 0.0 ], [ 9.202949426223345, 48.792611356962567, 0.0 ], [ 9.202906452633439, 48.792586074237384, 0.0 ], [ 9.202897768015173, 48.79259247411391, 0.0 ], [ 9.202896949605677, 48.792592025937935, 0.0 ], [ 9.202923952523179, 48.792571925398256, 0.0 ], [ 9.20297185232557, 48.792536321165059, 0.0 ], [ 9.202972802481419, 48.792535690025225, 0.0 ], [ 9.203126276069323, 48.792625073234817, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000079df", "Latitude": 48.79334, "Longitude": 9.20033, "X_coordina": 3514791.32, "Y_coordina": 5406227.62, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 2167.4, "SecondaryU": "retail", "Secondar00": 381.8, "BuildingTy": "GMH", "Footprint_": 477.3, "Total_wall": 1224.6, "Total_wa00": 0.0, "Total_outw": 1495.2, "Total_shar": 509.0, "Total_roof": 540.5, "Gross_volu": 8004.6, "Is_Gross_v": "false", "Heated_vol": 7966.5, "Ridge_mean": 18.4, "Eaves_mean": 14.44, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 41, "Number_o00": 63, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.281, "Heated_are": 2549.3, "Mean_Uvalu": 0.44, "Specific_d": "24,4", "Specific_s": 31.3, "Total_Year": 141994.0, "January_He": 19276.0, "February_H": 14069.0, "March_Heat": 9161.0, "April_Heat": 2133.0, "May_Heatin": 65.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 188.0, "October_He": 4045.0, "November_H": 12117.0, "December_H": 18730.0, "PV_potenti": 28.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200256780168104, 48.793286541124615, 0.0 ], [ 9.200348376804046, 48.793218129807748, 0.0 ], [ 9.200363483314213, 48.793217923677574, 0.0 ], [ 9.200400662570166, 48.793189622979433, 0.0 ], [ 9.200469282262727, 48.793229879231085, 0.0 ], [ 9.200524669063679, 48.793262335133754, 0.0 ], [ 9.200480160774083, 48.793295774274959, 0.0 ], [ 9.200431444384877, 48.793332008353907, 0.0 ], [ 9.20034378207124, 48.793397265565659, 0.0 ], [ 9.200254626705252, 48.793463604389267, 0.0 ], [ 9.200164249763791, 48.793530844502136, 0.0 ], [ 9.200159635889388, 48.793534269617574, 0.0 ], [ 9.200051453168866, 48.793470611866816, 0.0 ], [ 9.200188238460406, 48.793368490751554, 0.0 ], [ 9.200172823570052, 48.793359615113665, 0.0 ], [ 9.20026469229763, 48.793291113467674, 0.0 ], [ 9.200256780168104, 48.793286541124615, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000079e3", "Latitude": 48.79367, "Longitude": 9.20122, "X_coordina": 3514856.52, "Y_coordina": 5406264.14, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 27.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 33.6, "Total_wall": 41.3, "Total_wa00": 0.0, "Total_outw": 130.0, "Total_shar": 57.4, "Total_roof": 33.6, "Gross_volu": 94.4, "Is_Gross_v": "false", "Heated_vol": 84.5, "Ridge_mean": 2.8, "Eaves_mean": 2.8, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 1.201, "Heated_are": 27.0, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 30.0, "Total_Year": 1701.0, "January_He": 247.0, "February_H": 142.0, "March_Heat": 57.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 11.0, "November_H": 105.0, "December_H": 245.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201167567144591, 48.793726748195617, 0.0 ], [ 9.201119823798008, 48.793699944440554, 0.0 ], [ 9.201187678700192, 48.793650727644071, 0.0 ], [ 9.201233789886491, 48.793677803994122, 0.0 ], [ 9.201197828830264, 48.793704394282436, 0.0 ], [ 9.201167567144591, 48.793726748195617, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000079e5", "Latitude": 48.79358, "Longitude": 9.20066, "X_coordina": 3514815.63, "Y_coordina": 5406254.46, "LOD": "LOD2", "Year_of_co": 1993, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 6091.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 2074.1, "Total_wall": 1487.9, "Total_wa00": 0.0, "Total_outw": 2132.3, "Total_shar": 757.4, "Total_roof": 2088.5, "Gross_volu": 20054.6, "Is_Gross_v": "false", "Heated_vol": 19034.7, "Ridge_mean": 10.5, "Eaves_mean": 7.97, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.286, "Heated_are": 6091.1, "Mean_Uvalu": 0.44, "Specific_d": "73,0", "Specific_s": 44.6, "Total_Year": 716081.0, "January_He": 62986.0, "February_H": 46508.0, "March_Heat": 32148.0, "April_Heat": 10099.0, "May_Heatin": 811.0, "June_Heati": 21, "July_Heati": 2, "August_Hea": 5, "September_": 1874.0, "October_He": 15725.0, "November_H": 40402.0, "December_H": 60789.0, "PV_potenti": 98.85 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200431444384877, 48.793332008353907, 0.0 ], [ 9.200480160774083, 48.793295774274959, 0.0 ], [ 9.200524669063679, 48.793262335133754, 0.0 ], [ 9.200531860927814, 48.793256927195621, 0.0 ], [ 9.200574559906958, 48.793281761663685, 0.0 ], [ 9.200544163888107, 48.793304565266645, 0.0 ], [ 9.200755749349488, 48.793427571746179, 0.0 ], [ 9.200770073396573, 48.793435909666393, 0.0 ], [ 9.200771158981128, 48.793435098461558, 0.0 ], [ 9.200802807787747, 48.793453387688281, 0.0 ], [ 9.200720304347001, 48.79351530901711, 0.0 ], [ 9.200873640116974, 48.793604515604308, 0.0 ], [ 9.200876196218143, 48.793631128522769, 0.0 ], [ 9.200820288976622, 48.793673040492166, 0.0 ], [ 9.201050856737256, 48.793811480171726, 0.0 ], [ 9.201076231498666, 48.793826363180145, 0.0 ], [ 9.201073653092244, 48.793828256077198, 0.0 ], [ 9.201049227530548, 48.793846553207779, 0.0 ], [ 9.201028900785289, 48.793834718782669, 0.0 ], [ 9.200966069795749, 48.793881049162579, 0.0 ], [ 9.200875284031216, 48.793948110694508, 0.0 ], [ 9.200164249763791, 48.793530844502136, 0.0 ], [ 9.200254626705252, 48.793463604389267, 0.0 ], [ 9.20034378207124, 48.793397265565659, 0.0 ], [ 9.200431444384877, 48.793332008353907, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00007901", "Latitude": 48.79427, "Longitude": 9.20251, "X_coordina": 3514950.78, "Y_coordina": 5406331.0, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 227.8, "SecondaryU": "retail", "Secondar00": 93.3, "BuildingTy": "EFH", "Footprint_": 116.6, "Total_wall": 265.4, "Total_wa00": 0.0, "Total_outw": 477.3, "Total_shar": 56.7, "Total_roof": 116.6, "Gross_volu": 724.0, "Is_Gross_v": "false", "Heated_vol": 724.0, "Ridge_mean": 6.2, "Eaves_mean": 6.2, "Storey_num": 3, "Average_St": 2.1, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.689, "Heated_are": 321.1, "Mean_Uvalu": 0.47, "Specific_d": "32,5", "Specific_s": 50.5, "Total_Year": 26652.0, "January_He": 3657.0, "February_H": 2768.0, "March_Heat": 1975.0, "April_Heat": 648.0, "May_Heatin": 47.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 119.0, "October_He": 1031.0, "November_H": 2442.0, "December_H": 3544.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202438654157248, 48.794373678955566, 0.0 ], [ 9.202366621495891, 48.794331631410628, 0.0 ], [ 9.202416085346288, 48.794278309729407, 0.0 ], [ 9.202483708842568, 48.79420553260811, 0.0 ], [ 9.202487096238441, 48.794201749862339, 0.0 ], [ 9.202557496291336, 48.794243980051739, 0.0 ], [ 9.202554785797455, 48.794246862373299, 0.0 ], [ 9.202438654157248, 48.794373678955566, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00007902", "Latitude": 48.79418, "Longitude": 9.20262, "X_coordina": 3514958.97, "Y_coordina": 5406321.07, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2140, "PrimaryUsa": "hall", "PrimaryU00": 65.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 79.8, "Total_wall": 51.4, "Total_wa00": 0.0, "Total_outw": 154.5, "Total_shar": 123.6, "Total_roof": 79.8, "Gross_volu": 246.4, "Is_Gross_v": "false", "Heated_vol": 203.8, "Ridge_mean": 3.1, "Eaves_mean": 3.08, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.9, "Heated_are": 65.2, "Mean_Uvalu": 0.33, "Specific_d": "non calculated", "Specific_s": 85.7, "Total_Year": 5586.0, "January_He": 1167.0, "February_H": 877.0, "March_Heat": 669.0, "April_Heat": 296.0, "May_Heatin": 60.0, "June_Heati": 3, "July_Heati": 0, "August_Hea": 1, "September_": 99.0, "October_He": 442.0, "November_H": 819.0, "December_H": 1155.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202659361969328, 48.79419110562263, 0.0 ], [ 9.202569656601, 48.7942556487248, 0.0 ], [ 9.202554785797455, 48.794246862373299, 0.0 ], [ 9.202557496291336, 48.794243980051739, 0.0 ], [ 9.202487096238441, 48.794201749862339, 0.0 ], [ 9.202569330761763, 48.794140906831771, 0.0 ], [ 9.202622940067329, 48.794170757064471, 0.0 ], [ 9.202659361969328, 48.79419110562263, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000078f8", "Latitude": 48.7876, "Longitude": 9.21366, "X_coordina": 3515772.53, "Y_coordina": 5405592.34, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 461.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 122.2, "Total_wall": 241.6, "Total_wa00": 0.0, "Total_outw": 407.4, "Total_shar": 312.4, "Total_roof": 208.1, "Gross_volu": 1547.1, "Is_Gross_v": "false", "Heated_vol": 1443.2, "Ridge_mean": 15.8, "Eaves_mean": 9.41, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 12, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.385, "Heated_are": 461.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.3, "Total_Year": 26373.0, "January_He": 4629.0, "February_H": 3312.0, "March_Heat": 2078.0, "April_Heat": 419.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 1042.0, "November_H": 3001.0, "December_H": 4513.0, "PV_potenti": 10.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213602187916896, 48.787683699368891, 0.0 ], [ 9.21353709719007, 48.787674018401127, 0.0 ], [ 9.213575799627806, 48.787558394718154, 0.0 ], [ 9.213640209020316, 48.787567897080855, 0.0 ], [ 9.213699308037096, 48.787576689872488, 0.0 ], [ 9.213660061142997, 48.78769222468307, 0.0 ], [ 9.213602187916896, 48.787683699368891, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00007831", "Latitude": 48.78831, "Longitude": 9.21115, "X_coordina": 3515587.95, "Y_coordina": 5405670.38, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 140.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 58.4, "Total_wall": 145.8, "Total_wa00": 0.0, "Total_outw": 266.6, "Total_shar": 97.0, "Total_roof": 93.2, "Gross_volu": 474.9, "Is_Gross_v": "false", "Heated_vol": 440.2, "Ridge_mean": 10.6, "Eaves_mean": 5.66, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.653, "Heated_are": 140.9, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 52.8, "Total_Year": 9673.0, "January_He": 1938.0, "February_H": 1238.0, "March_Heat": 695.0, "April_Heat": 134.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 18.0, "October_He": 329.0, "November_H": 1149.0, "December_H": 1934.0, "PV_potenti": 3.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211060061126656, 48.788295730877152, 0.0 ], [ 9.211160224724583, 48.788296266649027, 0.0 ], [ 9.211159566657686, 48.788334035791323, 0.0 ], [ 9.211159026945465, 48.788367578304538, 0.0 ], [ 9.211058317345568, 48.788366683837651, 0.0 ], [ 9.21105913005475, 48.788333320671889, 0.0 ], [ 9.211060061126656, 48.788295730877152, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000766a", "Latitude": 48.78805, "Longitude": 9.20074, "X_coordina": 3514822.79, "Y_coordina": 5405639.76, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 505.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 113.5, "Total_wall": 358.3, "Total_wa00": 0.0, "Total_outw": 554.0, "Total_shar": 245.7, "Total_roof": 166.4, "Gross_volu": 1693.7, "Is_Gross_v": "false", "Heated_vol": 1580.2, "Ridge_mean": 18.1, "Eaves_mean": 12.43, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 8, "Number_o00": 18, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.395, "Heated_are": 505.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.1, "Total_Year": 28287.0, "January_He": 4823.0, "February_H": 3562.0, "March_Heat": 2317.0, "April_Heat": 521.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 58.0, "October_He": 1114.0, "November_H": 3145.0, "December_H": 4722.0, "PV_potenti": 6.62 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200788551814206, 48.788107093884086, 0.0 ], [ 9.200677647626781, 48.788143166743872, 0.0 ], [ 9.200601991628682, 48.788043033682399, 0.0 ], [ 9.20071384718374, 48.788006689465597, 0.0 ], [ 9.200751883484633, 48.788057789725322, 0.0 ], [ 9.200788551814206, 48.788107093884086, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000739d", "Latitude": 48.7886, "Longitude": 9.20942, "X_coordina": 3515460.55, "Y_coordina": 5405701.91, "LOD": "LOD2", "Year_of_co": 1949, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 81.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 40.9, "Total_wall": 45.5, "Total_wa00": 0.0, "Total_outw": 109.9, "Total_shar": 201.4, "Total_roof": 54.7, "Gross_volu": 296.3, "Is_Gross_v": "false", "Heated_vol": 255.4, "Ridge_mean": 9.0, "Eaves_mean": 5.44, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.511, "Heated_are": 81.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 47.1, "Total_Year": 5142.0, "January_He": 971.0, "February_H": 663.0, "March_Heat": 377.0, "April_Heat": 62.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 192.0, "November_H": 620.0, "December_H": 952.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209429595550422, 48.788593477300331, 0.0 ], [ 9.209433323575912, 48.788639061811715, 0.0 ], [ 9.209377263641315, 48.788641231993964, 0.0 ], [ 9.209324060816463, 48.78864321710838, 0.0 ], [ 9.209323058452188, 48.788631259084767, 0.0 ], [ 9.209320196426953, 48.788597542917707, 0.0 ], [ 9.20937353529229, 48.788595557557727, 0.0 ], [ 9.209429595550422, 48.788593477300331, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00007231", "Latitude": 48.79453, "Longitude": 9.20735, "X_coordina": 3515306.54, "Y_coordina": 5406361.0, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1589.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 288.2, "Total_wall": 1382.6, "Total_wa00": 0.0, "Total_outw": 1772.0, "Total_shar": 0.0, "Total_roof": 288.2, "Gross_volu": 4965.8, "Is_Gross_v": "false", "Heated_vol": 4965.8, "Ridge_mean": 18.3, "Eaves_mean": 18.31, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 25, "Number_o00": 47, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.394, "Heated_are": 1589.1, "Mean_Uvalu": 0.4, "Specific_d": "15,8", "Specific_s": 33.3, "Total_Year": 78038.0, "January_He": 13168.0, "February_H": 9209.0, "March_Heat": 5664.0, "April_Heat": 1132.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 100.0, "October_He": 2535.0, "November_H": 8142.0, "December_H": 12886.0, "PV_potenti": 11.95 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207201209085637, 48.794595682458848, 0.0 ], [ 9.207241972911854, 48.794480057335178, 0.0 ], [ 9.207277655255181, 48.794485568376565, 0.0 ], [ 9.207290973267421, 48.794447596662536, 0.0 ], [ 9.207444870226283, 48.794471329132634, 0.0 ], [ 9.207455356943608, 48.794472928865915, 0.0 ], [ 9.207426161835576, 48.794555351435498, 0.0 ], [ 9.207418358952584, 48.794577486684993, 0.0 ], [ 9.20738676226537, 48.79457259779457, 0.0 ], [ 9.207379636921454, 48.794594012432761, 0.0 ], [ 9.207366154393462, 48.794592058392873, 0.0 ], [ 9.207345297531013, 48.794650186565256, 0.0 ], [ 9.207265352808273, 48.794637921026428, 0.0 ], [ 9.207208969081819, 48.794629209983334, 0.0 ], [ 9.207207625067243, 48.794633348885242, 0.0 ], [ 9.207155054884023, 48.79462526041889, 0.0 ], [ 9.207167297145505, 48.794590437979707, 0.0 ], [ 9.207201209085637, 48.794595682458848, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000714e", "Latitude": 48.78808, "Longitude": 9.20897, "X_coordina": 3515427.56, "Y_coordina": 5405643.79, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 200.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.8, "Total_wall": 127.5, "Total_wa00": 0.0, "Total_outw": 214.2, "Total_shar": 264.8, "Total_roof": 86.7, "Gross_volu": 648.3, "Is_Gross_v": "false", "Heated_vol": 624.9, "Ridge_mean": 13.7, "Eaves_mean": 9.14, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.4, "Surface_ar": 0.427, "Heated_are": 200.0, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 40.5, "Total_Year": 11260.0, "January_He": 1974.0, "February_H": 1381.0, "March_Heat": 891.0, "April_Heat": 226.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 26.0, "October_He": 416.0, "November_H": 1224.0, "December_H": 1944.0, "PV_potenti": 3.32 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208947190427121, 48.788142397298081, 0.0 ], [ 9.208858208584445, 48.788114412607761, 0.0 ], [ 9.208878775169257, 48.788085779582033, 0.0 ], [ 9.208904213992659, 48.788050663210647, 0.0 ], [ 9.208993060034283, 48.788078738035878, 0.0 ], [ 9.208967892686578, 48.788113674086752, 0.0 ], [ 9.208947190427121, 48.788142397298081, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000070a9", "Latitude": 48.78975, "Longitude": 9.20143, "X_coordina": 3514873.07, "Y_coordina": 5405827.98, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 20008.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 1727.9, "Total_wall": 5779.9, "Total_wa00": 0.0, "Total_outw": 7079.5, "Total_shar": 1215.8, "Total_roof": 1727.9, "Gross_volu": 62529.7, "Is_Gross_v": "true", "Heated_vol": 62527.9, "Ridge_mean": 35.7, "Eaves_mean": 35.7, "Storey_num": 14, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.148, "Heated_are": 20008.9, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 0.7, "Total_Year": 670760.0, "January_He": 5948.0, "February_H": 2085.0, "March_Heat": 216.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 3.0, "November_H": 457.0, "December_H": 4558.0, "PV_potenti": 80.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201682876285027, 48.789691244623498, 0.0 ], [ 9.201711069592275, 48.789696770508414, 0.0 ], [ 9.201691651158399, 48.789741406642165, 0.0 ], [ 9.201569487909643, 48.78971940940238, 0.0 ], [ 9.201447573686869, 48.789997576676377, 0.0 ], [ 9.201433953286051, 48.789994812869629, 0.0 ], [ 9.201435033386721, 48.789992652813226, 0.0 ], [ 9.201389271069411, 48.789983920336795, 0.0 ], [ 9.20124054418678, 48.789955674547137, 0.0 ], [ 9.201074248277457, 48.78992413206953, 0.0 ], [ 9.20107303350772, 48.789926652052245, 0.0 ], [ 9.201062002850936, 48.789924872839492, 0.0 ], [ 9.201127815670436, 48.789774585449813, 0.0 ], [ 9.201183245043193, 48.789648325769534, 0.0 ], [ 9.201232875077769, 48.789535294968488, 0.0 ], [ 9.201331753900604, 48.789554275873186, 0.0 ], [ 9.201521067264897, 48.789590543656345, 0.0 ], [ 9.20158208336496, 48.789602216860281, 0.0 ], [ 9.201592162770618, 48.789604357383119, 0.0 ], [ 9.201609868337243, 48.789607743484829, 0.0 ], [ 9.201710789535651, 48.789626900335698, 0.0 ], [ 9.201682876285027, 48.789691244623498, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000070a9", "Latitude": 48.78975, "Longitude": 9.20143, "X_coordina": 3514873.07, "Y_coordina": 5405827.98, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 20008.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 1727.9, "Total_wall": 5779.9, "Total_wa00": 0.0, "Total_outw": 7079.5, "Total_shar": 1215.8, "Total_roof": 1727.9, "Gross_volu": 62529.7, "Is_Gross_v": "true", "Heated_vol": 62527.9, "Ridge_mean": 35.7, "Eaves_mean": 35.7, "Storey_num": 14, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.148, "Heated_are": 20008.9, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 0.7, "Total_Year": 670760.0, "January_He": 5948.0, "February_H": 2085.0, "March_Heat": 216.0, "April_Heat": 2.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 3.0, "November_H": 457.0, "December_H": 4558.0, "PV_potenti": 80.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201205570276622, 48.789888113090477, 1.66 ], [ 9.201199265457751, 48.789876973576128, 1.66 ], [ 9.201276255807848, 48.789697261542877, 1.66 ], [ 9.201290932121308, 48.789691840472109, 1.66 ], [ 9.20144483261579, 48.789720796536926, 1.66 ], [ 9.2014541307669, 48.789731750954424, 1.66 ], [ 9.2013752472236, 48.789914343972285, 1.66 ], [ 9.201362469668858, 48.789918143108096, 1.66 ], [ 9.201205570276622, 48.789888113090477, 1.66 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000070ab", "Latitude": 48.78994, "Longitude": 9.20128, "X_coordina": 3514862.19, "Y_coordina": 5405850.13, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 269.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 56.1, "Total_wall": 187.4, "Total_wa00": 0.0, "Total_outw": 318.5, "Total_shar": 1108.6, "Total_roof": 56.1, "Gross_volu": 846.1, "Is_Gross_v": "false", "Heated_vol": 841.8, "Ridge_mean": 15.1, "Eaves_mean": 15.08, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.355, "Heated_are": 269.4, "Mean_Uvalu": 0.43, "Specific_d": "32,9", "Specific_s": 7.7, "Total_Year": 10926.0, "January_He": 702.0, "February_H": 406.0, "March_Heat": 132.0, "April_Heat": 7.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 8.0, "November_H": 201.0, "December_H": 618.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201402987668295, 48.790007321453281, 0.0 ], [ 9.201066019909653, 48.789942481864685, 0.0 ], [ 9.201074234632308, 48.789924123100988, 0.0 ], [ 9.201412056925419, 48.78998827775159, 0.0 ], [ 9.201402987668295, 48.790007321453281, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000070ac", "Latitude": 48.79, "Longitude": 9.2012, "X_coordina": 3514856.06, "Y_coordina": 5405856.27, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1740.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 275.8, "Total_wall": 486.3, "Total_wa00": 0.0, "Total_outw": 612.5, "Total_shar": 875.0, "Total_roof": 275.8, "Gross_volu": 4766.3, "Is_Gross_v": "false", "Heated_vol": 4766.3, "Ridge_mean": 17.3, "Eaves_mean": 17.28, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.218, "Heated_are": 1740.4, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 0.9, "Total_Year": 58738.0, "January_He": 673.0, "February_H": 269.0, "March_Heat": 32.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 63.0, "December_H": 513.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201043138480269, 48.78993803462464, 0.0 ], [ 9.20106601994558, 48.78994249085698, 0.0 ], [ 9.201318122808948, 48.789991058783372, 0.0 ], [ 9.201270261725183, 48.790104086520408, 0.0 ], [ 9.200993644077322, 48.790051155022894, 0.0 ], [ 9.200995802522959, 48.790046385303285, 0.0 ], [ 9.201043138480269, 48.78993803462464, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000070ad", "Latitude": 48.78987, "Longitude": 9.20101, "X_coordina": 3514842.26, "Y_coordina": 5405842.22, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 991.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 435.9, "Total_wall": 444.5, "Total_wa00": 0.0, "Total_outw": 792.2, "Total_shar": 388.2, "Total_roof": 436.0, "Gross_volu": 3534.9, "Is_Gross_v": "false", "Heated_vol": 3099.0, "Ridge_mean": 8.5, "Eaves_mean": 8.51, "Storey_num": 3, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.39, "Heated_are": 991.7, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 6.2, "Total_Year": 38779.0, "January_He": 2202.0, "February_H": 1098.0, "March_Heat": 261.0, "April_Heat": 9.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 16.0, "November_H": 558.0, "December_H": 2048.0, "PV_potenti": 20.64 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200968327889452, 48.789743750316539, 0.0 ], [ 9.201127815670436, 48.789774585449813, 0.0 ], [ 9.201062002850936, 48.789924872839492, 0.0 ], [ 9.20107303350772, 48.789926652052245, 0.0 ], [ 9.20106601994558, 48.78994249085698, 0.0 ], [ 9.201043138480269, 48.78993803462464, 0.0 ], [ 9.200995802522959, 48.790046385303285, 0.0 ], [ 9.200807168640925, 48.790010205398801, 0.0 ], [ 9.20085932167501, 48.789915245015841, 0.0 ], [ 9.200884993970307, 48.789868799641809, 0.0 ], [ 9.200934372082818, 48.789794706345702, 0.0 ], [ 9.200951147293297, 48.789769588380658, 0.0 ], [ 9.200968327889452, 48.789743750316539, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000070ae", "Latitude": 48.78963, "Longitude": 9.20207, "X_coordina": 3514920.13, "Y_coordina": 5405814.81, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 9065.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 1995.2, "Total_wall": 3054.1, "Total_wa00": 0.0, "Total_outw": 3706.9, "Total_shar": 1049.6, "Total_roof": 1995.2, "Gross_volu": 28328.4, "Is_Gross_v": "false", "Heated_vol": 28328.4, "Ridge_mean": 23.2, "Eaves_mean": 23.23, "Storey_num": 9, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.249, "Heated_are": 9065.1, "Mean_Uvalu": 0.35, "Specific_d": "32,9", "Specific_s": 1.7, "Total_Year": 312926.0, "January_He": 6229.0, "February_H": 2492.0, "March_Heat": 363.0, "April_Heat": 6.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 8.0, "November_H": 755.0, "December_H": 5195.0, "PV_potenti": 94.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20216268761061, 48.789441404752459, 0.0 ], [ 9.202329646579951, 48.789434996722285, 0.0 ], [ 9.202398365973478, 48.78943325733762, 0.0 ], [ 9.202468220397384, 48.789443026141967, 0.0 ], [ 9.20245689222423, 48.789468764218562, 0.0 ], [ 9.202412115824258, 48.789569737250098, 0.0 ], [ 9.202414432269208, 48.789570452567538, 0.0 ], [ 9.202387590960212, 48.78963038888449, 0.0 ], [ 9.202285352126488, 48.789859064472054, 0.0 ], [ 9.201690437144748, 48.789744106477428, 0.0 ], [ 9.201691651158399, 48.789741406642165, 0.0 ], [ 9.201711069592275, 48.789696770508414, 0.0 ], [ 9.201682876285027, 48.789691244623498, 0.0 ], [ 9.201710789535651, 48.789626900335698, 0.0 ], [ 9.201609868337243, 48.789607743484829, 0.0 ], [ 9.201592162770618, 48.789604357383119, 0.0 ], [ 9.201593242495948, 48.789602107402118, 0.0 ], [ 9.20158329990246, 48.789600146487146, 0.0 ], [ 9.201599216029608, 48.789564508865418, 0.0 ], [ 9.201616376857373, 48.789567805996157, 0.0 ], [ 9.20162672771956, 48.789569766193459, 0.0 ], [ 9.201681893165432, 48.789445934669011, 0.0 ], [ 9.201779682171214, 48.789464647327421, 0.0 ], [ 9.201781284454494, 48.789490902221715, 0.0 ], [ 9.201908901347748, 48.789515497461359, 0.0 ], [ 9.201925627630096, 48.789478329671709, 0.0 ], [ 9.202018104905298, 48.789495972357962, 0.0 ], [ 9.202025121355035, 48.789480942801667, 0.0 ], [ 9.202082732634169, 48.789491992248472, 0.0 ], [ 9.202103904279234, 48.789443486253539, 0.0 ], [ 9.20216268761061, 48.789441404752459, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000070af", "Latitude": 48.78965, "Longitude": 9.20267, "X_coordina": 3514963.9, "Y_coordina": 5405817.77, "LOD": "LOD2", "Year_of_co": 2004, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 3575.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 1319.1, "Total_wall": 894.1, "Total_wa00": 0.0, "Total_outw": 1409.6, "Total_shar": 498.9, "Total_roof": 1319.1, "Gross_volu": 9538.6, "Is_Gross_v": "false", "Heated_vol": 9538.6, "Ridge_mean": 7.2, "Eaves_mean": 7.23, "Storey_num": 3, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.37, "Heated_are": 3575.8, "Mean_Uvalu": 0.35, "Specific_d": "32,9", "Specific_s": 2.0, "Total_Year": 124762.0, "January_He": 2962.0, "February_H": 1228.0, "March_Heat": 190.0, "April_Heat": 3.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 4.0, "November_H": 399.0, "December_H": 2474.0, "PV_potenti": 64.08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202285352126488, 48.789859064472054, 0.0 ], [ 9.202414568722165, 48.789570542251326, 0.0 ], [ 9.202412115824258, 48.789569737250098, 0.0 ], [ 9.20245689222423, 48.789468764218562, 0.0 ], [ 9.202749716447281, 48.789524990851049, 0.0 ], [ 9.202748907146146, 48.789526790748639, 0.0 ], [ 9.20286876087571, 48.789549779967544, 0.0 ], [ 9.202873114344202, 48.789549412603598, 0.0 ], [ 9.202957012528271, 48.789565630871529, 0.0 ], [ 9.20295906405145, 48.789568145117627, 0.0 ], [ 9.20284414730315, 48.789824629949159, 0.0 ], [ 9.202733691964658, 48.789803782327503, 0.0 ], [ 9.202722357326357, 48.789827901814604, 0.0 ], [ 9.202422038002844, 48.789769620046869, 0.0 ], [ 9.202374155016591, 48.789876533478598, 0.0 ], [ 9.202285352126488, 48.789859064472054, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000070b0", "Latitude": 48.78949, "Longitude": 9.20287, "X_coordina": 3514978.59, "Y_coordina": 5405800.26, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 40.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 51.3, "Total_wall": 55.8, "Total_wa00": 0.0, "Total_outw": 192.0, "Total_shar": 62.1, "Total_roof": 51.3, "Gross_volu": 133.2, "Is_Gross_v": "false", "Heated_vol": 128.0, "Ridge_mean": 2.6, "Eaves_mean": 2.6, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 1.207, "Heated_are": 40.9, "Mean_Uvalu": 0.4, "Specific_d": "32,9", "Specific_s": 28.5, "Total_Year": 2511.0, "January_He": 361.0, "February_H": 199.0, "March_Heat": 79.0, "April_Heat": 8.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 15.0, "November_H": 148.0, "December_H": 356.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202894018507585, 48.789502255789685, 0.0 ], [ 9.20286876087571, 48.789549779967544, 0.0 ], [ 9.202748907146146, 48.789526790748639, 0.0 ], [ 9.202749716447281, 48.789524990851049, 0.0 ], [ 9.202774164879735, 48.7894792665967, 0.0 ], [ 9.202894018507585, 48.789502255789685, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00006e1c", "Latitude": 48.79506, "Longitude": 9.20916, "X_coordina": 3515439.36, "Y_coordina": 5406420.7, "LOD": "LOD2", "Year_of_co": 1996, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 163.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 126.4, "Total_wall": 170.7, "Total_wa00": 0.0, "Total_outw": 439.2, "Total_shar": 27.3, "Total_roof": 173.6, "Gross_volu": 719.2, "Is_Gross_v": "false", "Heated_vol": 592.8, "Ridge_mean": 7.3, "Eaves_mean": 4.03, "Storey_num": 2, "Average_St": 3.2, "Number_of_": 1, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.719, "Heated_are": 163.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 69.7, "Total_Year": 13960.0, "January_He": 2760.0, "February_H": 1916.0, "March_Heat": 1221.0, "April_Heat": 337.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 52.0, "October_He": 605.0, "November_H": 1731.0, "December_H": 2730.0, "PV_potenti": 8.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209005747679896, 48.795033136872306, 0.0 ], [ 9.209245860311544, 48.795070648580769, 0.0 ], [ 9.20924007468717, 48.795086755408512, 0.0 ], [ 9.20923442217377, 48.795102142605643, 0.0 ], [ 9.209227290063261, 48.795121758897473, 0.0 ], [ 9.20922365707457, 48.795131836935468, 0.0 ], [ 9.208984496536853, 48.795094233529795, 0.0 ], [ 9.20899498806304, 48.795064180024397, 0.0 ], [ 9.209005747679896, 48.795033136872306, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00006bef", "Latitude": 48.79177, "Longitude": 9.19828, "X_coordina": 3514641.22, "Y_coordina": 5406053.06, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 592.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 223.2, "Total_wall": 550.4, "Total_wa00": 0.0, "Total_outw": 890.8, "Total_shar": 147.2, "Total_roof": 223.2, "Gross_volu": 1982.1, "Is_Gross_v": "false", "Heated_vol": 1850.9, "Ridge_mean": 10.8, "Eaves_mean": 10.79, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.521, "Heated_are": 592.3, "Mean_Uvalu": 0.47, "Specific_d": "14,6", "Specific_s": 69.8, "Total_Year": 49991.0, "January_He": 9269.0, "February_H": 6913.0, "March_Heat": 4945.0, "April_Heat": 1774.0, "May_Heatin": 221.0, "June_Heati": 8, "July_Heati": 1, "August_Hea": 2, "September_": 439.0, "October_He": 2679.0, "November_H": 6117.0, "December_H": 8973.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198250257335607, 48.791844041684406, 0.0 ], [ 9.19822813827891, 48.79186053578055, 0.0 ], [ 9.198229912151433, 48.791861701733808, 0.0 ], [ 9.19822692686267, 48.791863954962615, 0.0 ], [ 9.198225152990139, 48.791862789009308, 0.0 ], [ 9.198204662482825, 48.791878111290799, 0.0 ], [ 9.198206436355425, 48.791879277244412, 0.0 ], [ 9.19820345141877, 48.791881620395586, 0.0 ], [ 9.198201405705269, 48.791880544833418, 0.0 ], [ 9.198179693846836, 48.791896768448524, 0.0 ], [ 9.198181468427837, 48.79189811424849, 0.0 ], [ 9.198166404091431, 48.791908931004699, 0.0 ], [ 9.198078280431925, 48.791857106778892, 0.0 ], [ 9.198173947608213, 48.791785452921971, 0.0 ], [ 9.198219677432633, 48.791751113324032, 0.0 ], [ 9.198225784094376, 48.791746606632366, 0.0 ], [ 9.198311273345825, 48.791682523762042, 0.0 ], [ 9.198399809484499, 48.791735426183813, 0.0 ], [ 9.198353127825586, 48.791769947340029, 0.0 ], [ 9.198357221731447, 48.791772727919913, 0.0 ], [ 9.19835505020143, 48.791774260361592, 0.0 ], [ 9.198350411906587, 48.791771480719298, 0.0 ], [ 9.198313776221433, 48.791799599979683, 0.0 ], [ 9.19831732609263, 48.791802471421491, 0.0 ], [ 9.198314747331301, 48.791804274334474, 0.0 ], [ 9.19831024442446, 48.79180131461024, 0.0 ], [ 9.198301152481527, 48.791808074537087, 0.0 ], [ 9.198299651867044, 48.791807177885147, 0.0 ], [ 9.198276854127423, 48.791824122777463, 0.0 ], [ 9.198278491548059, 48.791825199041305, 0.0 ], [ 9.198276727596912, 48.791826550932491, 0.0 ], [ 9.198274818690132, 48.791825654983271, 0.0 ], [ 9.198252428517536, 48.791842419321739, 0.0 ], [ 9.19825420203569, 48.791843495351621, 0.0 ], [ 9.198251894756332, 48.791845117948625, 0.0 ], [ 9.198250257335607, 48.791844041684406, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00006b63", "Latitude": 48.79429, "Longitude": 9.20373, "X_coordina": 3515040.8, "Y_coordina": 5406333.99, "LOD": "LOD2", "Year_of_co": 1967, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1074.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 225.1, "Total_wall": 789.6, "Total_wa00": 0.0, "Total_outw": 1151.3, "Total_shar": 0.0, "Total_roof": 274.7, "Gross_volu": 3545.6, "Is_Gross_v": "false", "Heated_vol": 3359.2, "Ridge_mean": 18.3, "Eaves_mean": 13.37, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 17, "Number_o00": 29, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.377, "Heated_are": 1074.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 38.5, "Total_Year": 58424.0, "January_He": 10133.0, "February_H": 7195.0, "March_Heat": 4516.0, "April_Heat": 935.0, "May_Heatin": 29.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 104.0, "October_He": 2154.0, "November_H": 6416.0, "December_H": 9914.0, "PV_potenti": 13.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203686317718029, 48.794404121166039, 0.0 ], [ 9.203542934871509, 48.794321015543623, 0.0 ], [ 9.203678639283725, 48.794222039535406, 0.0 ], [ 9.203706944146189, 48.79422082046348, 0.0 ], [ 9.203831921967296, 48.794296314959055, 0.0 ], [ 9.203686317718029, 48.794404121166039, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00006af5", "Latitude": 48.78792, "Longitude": 9.20114, "X_coordina": 3514852.31, "Y_coordina": 5405625.27, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 491.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 113.0, "Total_wall": 338.7, "Total_wa00": 0.0, "Total_outw": 509.3, "Total_shar": 244.8, "Total_roof": 165.7, "Gross_volu": 1649.0, "Is_Gross_v": "false", "Heated_vol": 1536.0, "Ridge_mean": 18.1, "Eaves_mean": 12.07, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 8, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.393, "Heated_are": 491.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 39.9, "Total_Year": 27392.0, "January_He": 4665.0, "February_H": 3446.0, "March_Heat": 2241.0, "April_Heat": 504.0, "May_Heatin": 16.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 55.0, "October_He": 1074.0, "November_H": 3039.0, "December_H": 4567.0, "PV_potenti": 6.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201078720996641, 48.788012167734962, 0.0 ], [ 9.201003336932347, 48.787912124383467, 0.0 ], [ 9.201113694952525, 48.787875782391602, 0.0 ], [ 9.201152684886052, 48.787927060702074, 0.0 ], [ 9.201189759975486, 48.787975914405521, 0.0 ], [ 9.201078720996641, 48.788012167734962, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00006a43", "Latitude": 48.79383, "Longitude": 9.20626, "X_coordina": 3515226.41, "Y_coordina": 5406282.87, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2081, "PrimaryUsa": "restaurant", "PrimaryU00": 278.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 154.6, "Total_wall": 275.3, "Total_wa00": 0.0, "Total_outw": 589.4, "Total_shar": 0.0, "Total_roof": 154.6, "Gross_volu": 763.2, "Is_Gross_v": "false", "Heated_vol": 763.2, "Ridge_mean": 4.9, "Eaves_mean": 4.94, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.766, "Heated_are": 278.3, "Mean_Uvalu": 0.36, "Specific_d": "334,5", "Specific_s": 175.3, "Total_Year": 141869.0, "January_He": 10536.0, "February_H": 8229.0, "March_Heat": 6341.0, "April_Heat": 2852.0, "May_Heatin": 404.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 565.0, "October_He": 3031.0, "November_H": 6811.0, "December_H": 10011.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206162913866617, 48.793845335318998, 0.0 ], [ 9.206105921242449, 48.793820618429905, 0.0 ], [ 9.206162986161061, 48.793763324894059, 0.0 ], [ 9.206278743675449, 48.793813474802036, 0.0 ], [ 9.206260038174047, 48.793832212408979, 0.0 ], [ 9.206317576404158, 48.79385719801504, 0.0 ], [ 9.206241670275597, 48.793933319396743, 0.0 ], [ 9.206125503108366, 48.79388290041507, 0.0 ], [ 9.206162913866617, 48.793845335318998, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000692a", "Latitude": 48.79121, "Longitude": 9.20396, "X_coordina": 3515058.43, "Y_coordina": 5405991.63, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 144.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 53.4, "Total_wall": 85.6, "Total_wa00": 0.0, "Total_outw": 147.9, "Total_shar": 235.5, "Total_roof": 65.5, "Gross_volu": 465.1, "Is_Gross_v": "false", "Heated_vol": 451.0, "Ridge_mean": 10.3, "Eaves_mean": 7.08, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 2, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.447, "Heated_are": 144.3, "Mean_Uvalu": 0.53, "Specific_d": "15,8", "Specific_s": 44.4, "Total_Year": 8695.0, "January_He": 1598.0, "February_H": 1122.0, "March_Heat": 652.0, "April_Heat": 112.0, "May_Heatin": 3.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 13.0, "October_He": 315.0, "November_H": 1015.0, "December_H": 1578.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203840599922584, 48.791230894493218, 0.0 ], [ 9.203900445799485, 48.79118825467777, 0.0 ], [ 9.203943009676308, 48.791213357916767, 0.0 ], [ 9.203989257294035, 48.791240702704926, 0.0 ], [ 9.203938646999628, 48.791278650183159, 0.0 ], [ 9.203889009731565, 48.791254458702646, 0.0 ], [ 9.203840599922584, 48.791230894493218, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000692b", "Latitude": 48.79114, "Longitude": 9.20386, "X_coordina": 3515050.91, "Y_coordina": 5405983.52, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 29.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 32.6, "Total_wall": 55.1, "Total_wa00": 0.0, "Total_outw": 162.6, "Total_shar": 0.0, "Total_roof": 32.6, "Gross_volu": 76.1, "Is_Gross_v": "false", "Heated_vol": 76.1, "Ridge_mean": 2.3, "Eaves_mean": 2.34, "Storey_num": 1, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.582, "Heated_are": 29.5, "Mean_Uvalu": 0.35, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20382319629813, 48.791201430353901, 0.0 ], [ 9.203766200896467, 48.791175003753111, 0.0 ], [ 9.20378652846528, 48.791119934533107, 0.0 ], [ 9.203858284787456, 48.79116180185563, 0.0 ], [ 9.20382319629813, 48.791201430353901, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000068e9", "Latitude": 48.79108, "Longitude": 9.20896, "X_coordina": 3515426.2, "Y_coordina": 5405978.28, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 124.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.3, "Total_wall": 69.6, "Total_wa00": 0.0, "Total_outw": 135.8, "Total_shar": 228.4, "Total_roof": 68.7, "Gross_volu": 402.9, "Is_Gross_v": "false", "Heated_vol": 390.2, "Ridge_mean": 10.3, "Eaves_mean": 6.14, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.473, "Heated_are": 124.9, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.0, "Total_Year": 7218.0, "January_He": 1302.0, "February_H": 889.0, "March_Heat": 557.0, "April_Heat": 140.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 250.0, "November_H": 791.0, "December_H": 1290.0, "PV_potenti": 3.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208958152332281, 48.791110306995144, 0.0 ], [ 9.208946599345882, 48.791146747020235, 0.0 ], [ 9.208869117356638, 48.791136366514465, 0.0 ], [ 9.208880261737495, 48.791099837314604, 0.0 ], [ 9.208891809535448, 48.791062138374699, 0.0 ], [ 9.208970106866433, 48.791072247614984, 0.0 ], [ 9.208958152332281, 48.791110306995144, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00006791", "Latitude": 48.79236, "Longitude": 9.19835, "X_coordina": 3514645.85, "Y_coordina": 5406118.54, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 133.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 48.7, "Total_wall": 69.6, "Total_wa00": 0.0, "Total_outw": 145.9, "Total_shar": 323.6, "Total_roof": 79.2, "Gross_volu": 466.2, "Is_Gross_v": "false", "Heated_vol": 417.5, "Ridge_mean": 12.5, "Eaves_mean": 6.48, "Storey_num": 4, "Average_St": 2.9, "Number_of_": 2, "Number_o00": 3, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.45, "Heated_are": 133.6, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 41.9, "Total_Year": 7714.0, "January_He": 1371.0, "February_H": 962.0, "March_Heat": 607.0, "April_Heat": 138.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 293.0, "November_H": 862.0, "December_H": 1345.0, "PV_potenti": 2.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198230960556975, 48.792404208974084, 0.0 ], [ 9.198229739208889, 48.792405110312416, 0.0 ], [ 9.198226192842558, 48.792403138098095, 0.0 ], [ 9.198268803901065, 48.792371591484212, 0.0 ], [ 9.198314400573736, 48.792337881546629, 0.0 ], [ 9.198316856022211, 48.792339316095443, 0.0 ], [ 9.198315635386054, 48.792340397280654, 0.0 ], [ 9.198343599083929, 48.792356445442522, 0.0 ], [ 9.198364495912458, 48.792340582896159, 0.0 ], [ 9.19838250384924, 48.792351432629367, 0.0 ], [ 9.198365811906614, 48.792363690992161, 0.0 ], [ 9.19834396273116, 48.792379645102592, 0.0 ], [ 9.198316414043859, 48.792399835433152, 0.0 ], [ 9.198273937673093, 48.792431022138217, 0.0 ], [ 9.198270800308928, 48.792429229068247, 0.0 ], [ 9.198271885203507, 48.792428238040827, 0.0 ], [ 9.198230960556975, 48.792404208974084, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000653e", "Latitude": 48.78865, "Longitude": 9.21307, "X_coordina": 3515728.87, "Y_coordina": 5405708.66, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 89.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.0, "Total_wall": 51.2, "Total_wa00": 0.0, "Total_outw": 121.2, "Total_shar": 226.5, "Total_roof": 53.8, "Gross_volu": 322.3, "Is_Gross_v": "false", "Heated_vol": 280.3, "Ridge_mean": 9.4, "Eaves_mean": 5.96, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.488, "Heated_are": 89.7, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 46.8, "Total_Year": 5620.0, "January_He": 1050.0, "February_H": 725.0, "March_Heat": 422.0, "April_Heat": 73.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 10.0, "October_He": 215.0, "November_H": 673.0, "December_H": 1029.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21296875180454, 48.7886923771973, 0.0 ], [ 9.212973190462519, 48.788647856781481, 0.0 ], [ 9.213033080138965, 48.788650263871801, 0.0 ], [ 9.213088205955374, 48.788652499898525, 0.0 ], [ 9.213083903106767, 48.788696930143814, 0.0 ], [ 9.213029049800141, 48.788694783534595, 0.0 ], [ 9.21296875180454, 48.7886923771973, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000061a1", "Latitude": 48.78777, "Longitude": 9.20072, "X_coordina": 3514821.21, "Y_coordina": 5405607.86, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 497.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 112.5, "Total_wall": 355.9, "Total_wa00": 0.0, "Total_outw": 558.6, "Total_shar": 249.2, "Total_roof": 166.1, "Gross_volu": 1668.2, "Is_Gross_v": "false", "Heated_vol": 1555.7, "Ridge_mean": 18.6, "Eaves_mean": 11.99, "Storey_num": 6, "Average_St": 2.9, "Number_of_": 8, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.399, "Heated_are": 497.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 35.4, "Total_Year": 25523.0, "January_He": 4489.0, "February_H": 3072.0, "March_Heat": 1777.0, "April_Heat": 299.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 30.0, "October_He": 811.0, "November_H": 2724.0, "December_H": 4428.0, "PV_potenti": 7.91 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200624077783692, 48.78774579750683, 0.0 ], [ 9.20062147565374, 48.787741665551678, 0.0 ], [ 9.200690655028177, 48.787719333864274, 0.0 ], [ 9.200727320539878, 48.787768008584671, 0.0 ], [ 9.2007258271759, 48.787768910424354, 0.0 ], [ 9.200764001906197, 48.787820639906499, 0.0 ], [ 9.200653643394833, 48.787856891641027, 0.0 ], [ 9.200617111466613, 48.78780758719958, 0.0 ], [ 9.200581401504204, 48.787759630169383, 0.0 ], [ 9.200624077783692, 48.78774579750683, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00006116", "Latitude": 48.78825, "Longitude": 9.21395, "X_coordina": 3515793.47, "Y_coordina": 5405664.05, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 598.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 168.8, "Total_wall": 439.3, "Total_wa00": 0.0, "Total_outw": 707.0, "Total_shar": 152.7, "Total_roof": 218.5, "Gross_volu": 1972.9, "Is_Gross_v": "false", "Heated_vol": 1871.1, "Ridge_mean": 13.6, "Eaves_mean": 9.85, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 7, "Number_o00": 14, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.433, "Heated_are": 598.7, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 40.4, "Total_Year": 33688.0, "January_He": 6145.0, "February_H": 4166.0, "March_Heat": 2407.0, "April_Heat": 423.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 47.0, "October_He": 1147.0, "November_H": 3807.0, "December_H": 6051.0, "PV_potenti": 11.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21385199162375, 48.788183840793167, 0.0 ], [ 9.213971359403521, 48.788188115252311, 0.0 ], [ 9.213965674360137, 48.788355383818086, 0.0 ], [ 9.213907425689705, 48.788354772637391, 0.0 ], [ 9.213840467014331, 48.788354087677227, 0.0 ], [ 9.21385199162375, 48.788183840793167, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605c", "Latitude": 48.78924, "Longitude": 9.19298, "X_coordina": 3514252.55, "Y_coordina": 5405770.67, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 19258.0, "SecondaryU": "retail", "Secondar00": 2919.7, "BuildingTy": "GMH", "Footprint_": 3649.7, "Total_wall": 4316.5, "Total_wa00": 0.0, "Total_outw": 5521.9, "Total_shar": 619.2, "Total_roof": 3649.7, "Gross_volu": 61231.0, "Is_Gross_v": "false", "Heated_vol": 61231.0, "Ridge_mean": 19.9, "Eaves_mean": 19.89, "Storey_num": 8, "Average_St": 2.5, "Number_of_": 355, "Number_o00": 574, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.19, "Heated_are": 22177.8, "Mean_Uvalu": 0.32, "Specific_d": "23,4", "Specific_s": 20.5, "Total_Year": 973161.99999999988, "January_He": 108062.0, "February_H": 81763.0, "March_Heat": 57369.0, "April_Heat": 16069.0, "May_Heatin": 324.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 845.0, "October_He": 21396.0, "November_H": 66417.0, "December_H": 102700.0, "PV_potenti": 175.96 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19296921998191, 48.788966104492907, 0.0 ], [ 9.193064182324331, 48.789029521335017, 0.0 ], [ 9.193093380777066, 48.789049075731619, 0.0 ], [ 9.193151641315369, 48.789088094807511, 0.0 ], [ 9.193298452414163, 48.789186314847804, 0.0 ], [ 9.193529449139753, 48.789340865290598, 0.0 ], [ 9.193185496865382, 48.789611753277804, 0.0 ], [ 9.193027520525531, 48.789689712214638, 0.0 ], [ 9.192883047489543, 48.789562622435092, 0.0 ], [ 9.1928063047332, 48.7894950384579, 0.0 ], [ 9.192907285940377, 48.789424279282485, 0.0 ], [ 9.192809455151464, 48.789358259332801, 0.0 ], [ 9.192428912152071, 48.789101084802688, 0.0 ], [ 9.192425230843025, 48.789099292481531, 0.0 ], [ 9.192422651320822, 48.789100915417521, 0.0 ], [ 9.192349243755311, 48.789051040514863, 0.0 ], [ 9.19239959697871, 48.789015346632638, 0.0 ], [ 9.192531493396059, 48.788915041167648, 0.0 ], [ 9.192562160520454, 48.788891699665527, 0.0 ], [ 9.192563381541039, 48.788890708463597, 0.0 ], [ 9.192564194981248, 48.78888989779054, 0.0 ], [ 9.192565558973167, 48.7888907048224, 0.0 ], [ 9.192564745188873, 48.788891425572402, 0.0 ], [ 9.192619991200973, 48.788925234387769, 0.0 ], [ 9.192751677450305, 48.788841295124143, 0.0 ], [ 9.19278420832215, 48.788842679445338, 0.0 ], [ 9.192847378286064, 48.788884478090147, 0.0 ], [ 9.19296921998191, 48.788966104492907, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605d", "Latitude": 48.78858, "Longitude": 9.19214, "X_coordina": 3514191.01, "Y_coordina": 5405696.86, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 20187.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 2927.8, "Total_wall": 7798.7, "Total_wa00": 0.0, "Total_outw": 9234.2, "Total_shar": 672.7, "Total_roof": 2927.8, "Gross_volu": 63085.3, "Is_Gross_v": "false", "Heated_vol": 63085.3, "Ridge_mean": 33.3, "Eaves_mean": 33.35, "Storey_num": 13, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.216, "Heated_are": 20187.3, "Mean_Uvalu": 0.36, "Specific_d": "73,0", "Specific_s": 37.5, "Total_Year": 2230377.0, "January_He": 170574.0, "February_H": 129987.0, "March_Heat": 95154.0, "April_Heat": 35325.0, "May_Heatin": 3589.0, "June_Heati": 88, "July_Heati": 8, "August_Hea": 17, "September_": 6052.0, "October_He": 43917.0, "November_H": 108698.0, "December_H": 163094.0, "PV_potenti": 137.94 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.191736819649218, 48.788439771760558, 0.0 ], [ 9.191757175671592, 48.788424720614863, 0.0 ], [ 9.191754038788897, 48.78842292736546, 0.0 ], [ 9.191756617270094, 48.788421034675018, 0.0 ], [ 9.191751434267131, 48.788417985901695, 0.0 ], [ 9.191756862720188, 48.788414020221474, 0.0 ], [ 9.191790788476194, 48.788388695175776, 0.0 ], [ 9.192057038439875, 48.788190419381699, 0.0 ], [ 9.192109003848907, 48.788220726895013, 0.0 ], [ 9.192116641924484, 48.7882252103349, 0.0 ], [ 9.192131781648662, 48.788234087517154, 0.0 ], [ 9.192188931191186, 48.788267713519595, 0.0 ], [ 9.192319461061311, 48.78834438031614, 0.0 ], [ 9.192293677522439, 48.788363577112932, 0.0 ], [ 9.19233732400283, 48.788389222383984, 0.0 ], [ 9.192348099026148, 48.78839549904184, 0.0 ], [ 9.192472900344805, 48.788468668209248, 0.0 ], [ 9.192509407670686, 48.78844234947703, 0.0 ], [ 9.192572832907857, 48.788479921436853, 0.0 ], [ 9.192424239720316, 48.788590955773074, 0.0 ], [ 9.192383121724964, 48.788621598515753, 0.0 ], [ 9.19231587187771, 48.788580345970345, 0.0 ], [ 9.192277055652157, 48.788607927426995, 0.0 ], [ 9.192226160110261, 48.788644071781789, 0.0 ], [ 9.192121370468714, 48.788608277201526, 0.0 ], [ 9.192111752794244, 48.788619983321588, 0.0 ], [ 9.192215821404339, 48.788680777888132, 0.0 ], [ 9.192195733816211, 48.788694839506022, 0.0 ], [ 9.192223966062409, 48.788710978638058, 0.0 ], [ 9.192222203774692, 48.788712780052748, 0.0 ], [ 9.192250985548693, 48.788730267115497, 0.0 ], [ 9.192253292879348, 48.788728644637672, 0.0 ], [ 9.192255340399152, 48.788730259844876, 0.0 ], [ 9.192271772820524, 48.788721240044012, 0.0 ], [ 9.192443496140447, 48.788822207213649, 0.0 ], [ 9.192485369461599, 48.788846686382527, 0.0 ], [ 9.192488083682344, 48.788844703525314, 0.0 ], [ 9.192502816078122, 48.788853761186054, 0.0 ], [ 9.192500781272605, 48.788855473136898, 0.0 ], [ 9.192562160520454, 48.788891699665527, 0.0 ], [ 9.192531493396059, 48.788915041167648, 0.0 ], [ 9.19239959697871, 48.789015346632638, 0.0 ], [ 9.191647511968593, 48.788573996591495, 0.0 ], [ 9.191682254418737, 48.788548670219264, 0.0 ], [ 9.191631789324836, 48.788519259254976, 0.0 ], [ 9.1916290747454, 48.788521152169075, 0.0 ], [ 9.191625390425475, 48.788518550514368, 0.0 ], [ 9.191731376459975, 48.788439870747354, 0.0 ], [ 9.191734376912017, 48.788441574300869, 0.0 ], [ 9.191736819649218, 48.788439771760558, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192408241582957, 48.789201177377187, 0.0 ], [ 9.192412206000297, 48.789198706845283, 0.0 ], [ 9.192415999214157, 48.789201290307844, 0.0 ], [ 9.192412089370476, 48.789203796718155, 0.0 ], [ 9.192408241582957, 48.789201177377187, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192489467704561, 48.789256344666441, 0.0 ], [ 9.192493418513196, 48.789253874154539, 0.0 ], [ 9.192497211700982, 48.789256448622083, 0.0 ], [ 9.192493315466123, 48.789258955012357, 0.0 ], [ 9.192489467704561, 48.789256344666441, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19257464477867, 48.789309032390648, 0.0 ], [ 9.192578438009177, 48.789311615847808, 0.0 ], [ 9.192574528165041, 48.789314122263562, 0.0 ], [ 9.192570680360642, 48.789311502928079, 0.0 ], [ 9.19257464477867, 48.789309032390648, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192655754616535, 48.789369280441647, 0.0 ], [ 9.192651906838124, 48.789366670101238, 0.0 ], [ 9.192655857647408, 48.789364199583794, 0.0 ], [ 9.192659650851811, 48.789366774045931, 0.0 ], [ 9.192655754616535, 48.789369280441647, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19253402480196, 48.789281448795066, 0.0 ], [ 9.192537831637361, 48.789284032230817, 0.0 ], [ 9.192533921793345, 48.789286538645214, 0.0 ], [ 9.192530074027573, 48.789283928300669, 0.0 ], [ 9.19253402480196, 48.789281448795066, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192615148190292, 48.789341705844635, 0.0 ], [ 9.192611300381675, 48.789339086510537, 0.0 ], [ 9.1926152511908, 48.789336615994479, 0.0 ], [ 9.192619044391044, 48.789339190457966, 0.0 ], [ 9.192615148190292, 48.789341705844635, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192688665522398, 48.789391634345947, 0.0 ], [ 9.192692616331829, 48.789389163827245, 0.0 ], [ 9.192696409539987, 48.789391738288153, 0.0 ], [ 9.192692513339049, 48.789394253677422, 0.0 ], [ 9.192688665522398, 48.789391634345947, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19245281223451, 48.789226290507159, 0.0 ], [ 9.192456605418142, 48.789228864976074, 0.0 ], [ 9.192452709183389, 48.789231371364977, 0.0 ], [ 9.192448861426039, 48.789228761017704, 0.0 ], [ 9.19245281223451, 48.789226290507159, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000605f", "Latitude": 48.78924, "Longitude": 9.19261, "X_coordina": 3514225.34, "Y_coordina": 5405769.9, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1313, "PrimaryUsa": "non-heated", "PrimaryU00": 2.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 1.5, "Total_wall": 83.1, "Total_wa00": 0.0, "Total_outw": 135.7, "Total_shar": 20.1, "Total_roof": 796.5, "Gross_volu": 6.9, "Is_Gross_v": "true", "Heated_vol": 6.9, "Ridge_mean": 4.8, "Eaves_mean": 4.76, "Storey_num": 2, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 127.735, "Heated_are": 2.6, "Mean_Uvalu": 0.28, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 18.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192367635427768, 48.789173602691726, 0.0 ], [ 9.19237158620154, 48.789171123191636, 0.0 ], [ 9.192375393020269, 48.789173706632837, 0.0 ], [ 9.192371483176695, 48.789176213041777, 0.0 ], [ 9.192367635427768, 48.789173602691726, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005fed", "Latitude": 48.796, "Longitude": 9.21107, "X_coordina": 3515579.59, "Y_coordina": 5406525.39, "LOD": "LOD2", "Year_of_co": 2002, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1020, "PrimaryUsa": "residential", "PrimaryU00": 3823.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 1124.2, "Total_wall": 2944.6, "Total_wa00": 0.0, "Total_outw": 2944.6, "Total_shar": 46.8, "Total_roof": 1124.2, "Gross_volu": 11948.8, "Is_Gross_v": "false", "Heated_vol": 11948.8, "Ridge_mean": 15.5, "Eaves_mean": 15.54, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 48, "Number_o00": 94, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.435, "Heated_are": 3823.6, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 39.5, "Total_Year": 211494.0, "January_He": 35486.0, "February_H": 25978.0, "March_Heat": 17652.0, "April_Heat": 4844.0, "May_Heatin": 195.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 604.0, "October_He": 8707.0, "November_H": 23012.0, "December_H": 34449.0, "PV_potenti": 45.65 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210877664117202, 48.796309779651004, 0.0 ], [ 9.210858164831137, 48.796364318007342, 0.0 ], [ 9.210815146960803, 48.796364939901757, 0.0 ], [ 9.210770066997378, 48.796358084815679, 0.0 ], [ 9.210772096565519, 48.796352599362699, 0.0 ], [ 9.210757654121442, 48.79635038400103, 0.0 ], [ 9.210767600090215, 48.79632122967525, 0.0 ], [ 9.210782173191429, 48.796323444796549, 0.0 ], [ 9.210791588820072, 48.796296361478944, 0.0 ], [ 9.210775783160551, 48.796293963372264, 0.0 ], [ 9.210776594870325, 48.796291806419561, 0.0 ], [ 9.21078995723162, 48.796293852001888, 0.0 ], [ 9.210876713595367, 48.796046942996256, 0.0 ], [ 9.210863352657219, 48.796044897421304, 0.0 ], [ 9.210864442112655, 48.796042112293058, 0.0 ], [ 9.210959097061416, 48.796055785364814, 0.0 ], [ 9.210957748423708, 48.796058757110444, 0.0 ], [ 9.211037425695441, 48.796071730971292, 0.0 ], [ 9.211039855032265, 48.796068757244321, 0.0 ], [ 9.211043942348967, 48.796069391808089, 0.0 ], [ 9.211057786185886, 48.796026911737719, 0.0 ], [ 9.211035994046229, 48.796024082214089, 0.0 ], [ 9.211036652743953, 48.796021468728298, 0.0 ], [ 9.211054768956224, 48.796023419241806, 0.0 ], [ 9.211154325743502, 48.795681427481703, 0.0 ], [ 9.211136362151505, 48.795679491091697, 0.0 ], [ 9.211137298805278, 48.795675976960915, 0.0 ], [ 9.211297861301444, 48.795696182344876, 0.0 ], [ 9.211296922736379, 48.795699238769636, 0.0 ], [ 9.211282891644084, 48.795697380614513, 0.0 ], [ 9.211186060865639, 48.796040080579509, 0.0 ], [ 9.211197342967132, 48.796041045451645, 0.0 ], [ 9.211196556114167, 48.796043930742449, 0.0 ], [ 9.211227319664596, 48.796047828258786, 0.0 ], [ 9.211188716497185, 48.796158147109175, 0.0 ], [ 9.211143786670309, 48.79615103471243, 0.0 ], [ 9.211143262555508, 48.796154905083036, 0.0 ], [ 9.211128410540516, 48.796153033127347, 0.0 ], [ 9.211063989213089, 48.79633624721599, 0.0 ], [ 9.211078410887886, 48.796338376250759, 0.0 ], [ 9.211077751411111, 48.7963408044956, 0.0 ], [ 9.210912128860711, 48.796315026520716, 0.0 ], [ 9.210877664117202, 48.796309779651004, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005c61", "Latitude": 48.7881, "Longitude": 9.19921, "X_coordina": 3514710.04, "Y_coordina": 5405644.57, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 758.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 175.5, "Total_wall": 595.7, "Total_wa00": 0.0, "Total_outw": 881.1, "Total_shar": 158.8, "Total_roof": 204.2, "Gross_volu": 2545.8, "Is_Gross_v": "false", "Heated_vol": 2370.3, "Ridge_mean": 16.5, "Eaves_mean": 12.34, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 12, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.4, "Heated_are": 758.5, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.4, "Total_Year": 43414.0, "January_He": 7560.0, "February_H": 5418.0, "March_Heat": 3544.0, "April_Heat": 817.0, "May_Heatin": 27.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 102.0, "October_He": 1730.0, "November_H": 4836.0, "December_H": 7366.0, "PV_potenti": 9.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199260952112292, 48.788173593096943, 0.0 ], [ 9.199185034497134, 48.788178580313904, 0.0 ], [ 9.199145035082475, 48.788181257279881, 0.0 ], [ 9.199070886226526, 48.78818615143917, 0.0 ], [ 9.199063756890958, 48.788138414301855, 0.0 ], [ 9.199061519737338, 48.788123310994692, 0.0 ], [ 9.199081926797296, 48.788121747014543, 0.0 ], [ 9.199080806795097, 48.788113835668973, 0.0 ], [ 9.199073952124962, 48.788066727522441, 0.0 ], [ 9.199242930096574, 48.788055734365294, 0.0 ], [ 9.199252428258276, 48.788117405560421, 0.0 ], [ 9.199260952112292, 48.788173593096943, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005c64", "Latitude": 48.78803, "Longitude": 9.1992, "X_coordina": 3514709.68, "Y_coordina": 5405636.25, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 39.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.1, "Total_wall": 29.5, "Total_wa00": 0.0, "Total_outw": 125.9, "Total_shar": 81.6, "Total_roof": 42.1, "Gross_volu": 64.4, "Is_Gross_v": "false", "Heated_vol": 64.4, "Ridge_mean": 1.5, "Eaves_mean": 1.53, "Storey_num": 1, "Average_St": 1.5, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.764, "Heated_are": 39.4, "Mean_Uvalu": 0.35, "Specific_d": "15,9", "Specific_s": 51.1, "Total_Year": 2641.0, "January_He": 489.0, "February_H": 338.0, "March_Heat": 223.0, "April_Heat": 65.0, "May_Heatin": 5.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 105.0, "November_H": 298.0, "December_H": 484.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199069070625105, 48.788036791382957, 0.0 ], [ 9.199238455334752, 48.788025437834541, 0.0 ], [ 9.199242930096574, 48.788055734365294, 0.0 ], [ 9.199073952124962, 48.788066727522441, 0.0 ], [ 9.199069070625105, 48.788036791382957, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005afc", "Latitude": 48.78853, "Longitude": 9.21025, "X_coordina": 3515521.36, "Y_coordina": 5405694.72, "LOD": "LOD2", "Year_of_co": 1994, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 93.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.3, "Total_wall": 57.5, "Total_wa00": 0.0, "Total_outw": 142.1, "Total_shar": 196.1, "Total_roof": 62.9, "Gross_volu": 339.6, "Is_Gross_v": "false", "Heated_vol": 293.3, "Ridge_mean": 9.1, "Eaves_mean": 5.6, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.528, "Heated_are": 93.8, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 46.8, "Total_Year": 5878.0, "January_He": 1126.0, "February_H": 755.0, "March_Heat": 415.0, "April_Heat": 64.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 209.0, "November_H": 709.0, "December_H": 1105.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210257227929365, 48.788578031037389, 0.0 ], [ 9.21020620262359, 48.788580012583402, 0.0 ], [ 9.21015531302676, 48.78858190393553, 0.0 ], [ 9.210154451060841, 48.788571024746631, 0.0 ], [ 9.210150726893859, 48.788526519334738, 0.0 ], [ 9.210201343882597, 48.788524538558569, 0.0 ], [ 9.210252504845078, 48.788522466843347, 0.0 ], [ 9.210257227929365, 48.788578031037389, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005957", "Latitude": 48.78855, "Longitude": 9.21393, "X_coordina": 3515791.7, "Y_coordina": 5405697.07, "LOD": "LOD2", "Year_of_co": 1924, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 82.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 37.2, "Total_wall": 113.8, "Total_wa00": 0.0, "Total_outw": 216.5, "Total_shar": 114.4, "Total_roof": 47.4, "Gross_volu": 294.1, "Is_Gross_v": "false", "Heated_vol": 256.9, "Ridge_mean": 9.7, "Eaves_mean": 6.08, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.73, "Heated_are": 82.2, "Mean_Uvalu": 0.54, "Specific_d": "15,8", "Specific_s": 50.7, "Total_Year": 5469.0, "January_He": 1135.0, "February_H": 677.0, "March_Heat": 349.0, "April_Heat": 69.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 156.0, "November_H": 619.0, "December_H": 1152.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213947714188258, 48.788548303425301, 0.0 ], [ 9.213935922650899, 48.78859166853168, 0.0 ], [ 9.213875865578711, 48.7885818884819, 0.0 ], [ 9.213818531827231, 48.788572463039117, 0.0 ], [ 9.213827654417294, 48.788541512364404, 0.0 ], [ 9.213890134654182, 48.788545083206792, 0.0 ], [ 9.213947714188258, 48.788548303425301, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005781", "Latitude": 48.79169, "Longitude": 9.20378, "X_coordina": 3515044.8, "Y_coordina": 5406044.93, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 98.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.4, "Total_wall": 60.3, "Total_wa00": 0.0, "Total_outw": 135.2, "Total_shar": 200.8, "Total_roof": 60.5, "Gross_volu": 354.5, "Is_Gross_v": "false", "Heated_vol": 308.1, "Ridge_mean": 9.3, "Eaves_mean": 5.99, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.505, "Heated_are": 98.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.0, "Total_Year": 6001.0, "January_He": 1136.0, "February_H": 767.0, "March_Heat": 422.0, "April_Heat": 61.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 210.0, "November_H": 718.0, "December_H": 1116.0, "PV_potenti": 1.8 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.203672105021498, 48.791733505880977, 0.0 ], [ 9.203686181192758, 48.791680605906691, 0.0 ], [ 9.203734110257237, 48.791686186309292, 0.0 ], [ 9.203790617448185, 48.79169274067155, 0.0 ], [ 9.203776540655019, 48.791745460812386, 0.0 ], [ 9.203720850717483, 48.791739084844714, 0.0 ], [ 9.203672105021498, 48.791733505880977, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005390", "Latitude": 48.7944, "Longitude": 9.20357, "X_coordina": 3515028.82, "Y_coordina": 5406346.19, "LOD": "LOD2", "Year_of_co": 2015, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 564.2, "SecondaryU": "retail", "Secondar00": 125.2, "BuildingTy": "GMH", "Footprint_": 156.5, "Total_wall": 519.6, "Total_wa00": 0.0, "Total_outw": 766.7, "Total_shar": 141.8, "Total_roof": 194.2, "Gross_volu": 2310.7, "Is_Gross_v": "false", "Heated_vol": 2154.3, "Ridge_mean": 16.8, "Eaves_mean": 13.28, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 11, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.395, "Heated_are": 689.4, "Mean_Uvalu": 0.4, "Specific_d": "26,2", "Specific_s": 35.6, "Total_Year": 42630.0, "January_He": 6032.0, "February_H": 4278.0, "March_Heat": 2693.0, "April_Heat": 597.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 62.0, "October_He": 1227.0, "November_H": 3746.0, "December_H": 5897.0, "PV_potenti": 8.99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20353563514333, 48.794501594953509, 0.0 ], [ 9.20353345274131, 48.794500429804494, 0.0 ], [ 9.203404255259986, 48.794424852517594, 0.0 ], [ 9.20351321791199, 48.794343279184005, 0.0 ], [ 9.203645279725366, 48.794420379985119, 0.0 ], [ 9.203642838217604, 48.794422452544495, 0.0 ], [ 9.20353563514333, 48.794501594953509, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005391", "Latitude": 48.79449, "Longitude": 9.2037, "X_coordina": 3515038.18, "Y_coordina": 5406356.0, "LOD": "LOD2", "Year_of_co": 1969, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 461.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 169.3, "Total_wall": 234.0, "Total_wa00": 0.0, "Total_outw": 411.7, "Total_shar": 265.0, "Total_roof": 169.3, "Gross_volu": 1154.1, "Is_Gross_v": "false", "Heated_vol": 1154.1, "Ridge_mean": 6.8, "Eaves_mean": 6.82, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.496, "Heated_are": 461.6, "Mean_Uvalu": 0.42, "Specific_d": "73,0", "Specific_s": 39.8, "Total_Year": 52087.0, "January_He": 4467.0, "February_H": 3157.0, "March_Heat": 2053.0, "April_Heat": 562.0, "May_Heatin": 43.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 90.0, "October_He": 949.0, "November_H": 2727.0, "December_H": 4338.0, "PV_potenti": 7.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20353563514333, 48.794501594953509, 0.0 ], [ 9.203642838217604, 48.794422452544495, 0.0 ], [ 9.203693997122045, 48.794451946916553, 0.0 ], [ 9.203672422398817, 48.794468261240254, 0.0 ], [ 9.203778560066059, 48.79452940134081, 0.0 ], [ 9.203687240112998, 48.794598354420529, 0.0 ], [ 9.203526532504638, 48.79450565760159, 0.0 ], [ 9.20353345274131, 48.794500429804494, 0.0 ], [ 9.20353563514333, 48.794501594953509, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005342", "Latitude": 48.79541, "Longitude": 9.21116, "X_coordina": 3515586.11, "Y_coordina": 5406459.33, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1022, "PrimaryUsa": "health care", "PrimaryU00": 872.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 193.2, "Total_wall": 751.8, "Total_wa00": 0.0, "Total_outw": 1147.3, "Total_shar": 0.0, "Total_roof": 284.1, "Gross_volu": 2764.6, "Is_Gross_v": "false", "Heated_vol": 2726.6, "Ridge_mean": 17.7, "Eaves_mean": 9.37, "Storey_num": 7, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.449, "Heated_are": 872.5, "Mean_Uvalu": 0.48, "Specific_d": "155,5", "Specific_s": 132.1, "Total_Year": 250963.0, "January_He": 23864.0, "February_H": 18509.0, "March_Heat": 14472.0, "April_Heat": 6940.0, "May_Heatin": 1668.0, "June_Heati": 132, "July_Heati": 17, "August_Hea": 32, "September_": 2297.0, "October_He": 8171.0, "November_H": 16180.0, "December_H": 22978.0, "PV_potenti": 13.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211091460645154, 48.795489561361734, 0.0 ], [ 9.211011377577982, 48.79547729867658, 0.0 ], [ 9.211057243180612, 48.795346825486973, 0.0 ], [ 9.211103686158761, 48.795354024168937, 0.0 ], [ 9.211105972810287, 48.795347545481917, 0.0 ], [ 9.211139340485039, 48.795352609952282, 0.0 ], [ 9.211170529325019, 48.795357408637642, 0.0 ], [ 9.211167974241611, 48.795364787053614, 0.0 ], [ 9.211216731068744, 48.795371981447182, 0.0 ], [ 9.211187118185594, 48.795450808781695, 0.0 ], [ 9.211214763776798, 48.795454534870103, 0.0 ], [ 9.211196467224694, 48.795505555075401, 0.0 ], [ 9.211091460645154, 48.795489561361734, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005343", "Latitude": 48.7953, "Longitude": 9.21122, "X_coordina": 3515590.86, "Y_coordina": 5406447.42, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 25.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 26.9, "Total_wall": 42.1, "Total_wa00": 0.0, "Total_outw": 150.1, "Total_shar": 0.0, "Total_roof": 26.9, "Gross_volu": 52.9, "Is_Gross_v": "false", "Heated_vol": 52.9, "Ridge_mean": 2.0, "Eaves_mean": 1.95, "Storey_num": 1, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.813, "Heated_are": 25.0, "Mean_Uvalu": 0.27, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211135870271434, 48.795336519999722, 0.0 ], [ 9.211152545242843, 48.795288290405729, 0.0 ], [ 9.211197354145673, 48.79529531219903, 0.0 ], [ 9.211220720280146, 48.795349583167543, 0.0 ], [ 9.211135870271434, 48.795336519999722, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005335", "Latitude": 48.78911, "Longitude": 9.19797, "X_coordina": 3514618.79, "Y_coordina": 5405756.13, "LOD": "LOD2", "Year_of_co": 2003, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 2655.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 524.8, "Total_wall": 1492.5, "Total_wa00": 0.0, "Total_outw": 2034.6, "Total_shar": 90.5, "Total_roof": 524.8, "Gross_volu": 8824.5, "Is_Gross_v": "false", "Heated_vol": 8299.7, "Ridge_mean": 19.6, "Eaves_mean": 19.56, "Storey_num": 7, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.298, "Heated_are": 2655.9, "Mean_Uvalu": 0.37, "Specific_d": "73,0", "Specific_s": 41.3, "Total_Year": 303503.00000000006, "January_He": 25164.0, "February_H": 18816.0, "March_Heat": 13354.0, "April_Heat": 4468.0, "May_Heatin": 385.0, "June_Heati": 10, "July_Heati": 1, "August_Hea": 2, "September_": 797.0, "October_He": 6340.0, "November_H": 16118.0, "December_H": 24141.0, "PV_potenti": 24.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198044378010804, 48.789121688567462, 0.0 ], [ 9.198044520470743, 48.789123306947992, 0.0 ], [ 9.198054700975408, 48.789254937648579, 0.0 ], [ 9.19782080214431, 48.789265680909324, 0.0 ], [ 9.197791711456425, 48.788997039039394, 0.0 ], [ 9.197837020152758, 48.788994623193283, 0.0 ], [ 9.198033911934989, 48.788986641255541, 0.0 ], [ 9.198039649943953, 48.789061447858607, 0.0 ], [ 9.198044378010804, 48.789121688567462, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00005336", "Latitude": 48.78889, "Longitude": 9.19805, "X_coordina": 3514624.9, "Y_coordina": 5405731.85, "LOD": "LOD2", "Year_of_co": 1967, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 376.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 405.5, "Total_wall": 123.9, "Total_wa00": 0.0, "Total_outw": 415.3, "Total_shar": 89.6, "Total_roof": 405.5, "Gross_volu": 748.9, "Is_Gross_v": "false", "Heated_vol": 748.9, "Ridge_mean": 1.8, "Eaves_mean": 1.84, "Storey_num": 1, "Average_St": 1.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.248, "Heated_are": 376.1, "Mean_Uvalu": 0.3, "Specific_d": "73,0", "Specific_s": 58.0, "Total_Year": 49269.0, "January_He": 4767.0, "February_H": 3631.0, "March_Heat": 2722.0, "April_Heat": 1104.0, "May_Heatin": 153.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 1, "September_": 257.0, "October_He": 1410.0, "November_H": 3155.0, "December_H": 4603.0, "PV_potenti": 19.55 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198033911934989, 48.788986641255541, 0.0 ], [ 9.197837020152758, 48.788994623193283, 0.0 ], [ 9.197869759342874, 48.788875867732273, 0.0 ], [ 9.19788033467611, 48.788831157508532, 0.0 ], [ 9.198159414885415, 48.788820786005097, 0.0 ], [ 9.198174607460558, 48.788981003795911, 0.0 ], [ 9.198085754332222, 48.788984573769973, 0.0 ], [ 9.198033911934989, 48.788986641255541, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000532c", "Latitude": 48.79, "Longitude": 9.19862, "X_coordina": 3514666.23, "Y_coordina": 5405855.23, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 438.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 92.2, "Total_wall": 537.7, "Total_wa00": 0.0, "Total_outw": 731.5, "Total_shar": 125.4, "Total_roof": 101.6, "Gross_volu": 1587.6, "Is_Gross_v": "false", "Heated_vol": 1495.3, "Ridge_mean": 19.0, "Eaves_mean": 15.31, "Storey_num": 6, "Average_St": 3.0, "Number_of_": 7, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.481, "Heated_are": 438.4, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 45.3, "Total_Year": 26816.0, "January_He": 5037.0, "February_H": 3417.0, "March_Heat": 1973.0, "April_Heat": 369.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 46.0, "October_He": 962.0, "November_H": 3083.0, "December_H": 4971.0, "PV_potenti": 3.16 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198521541779176, 48.789991417661781, 0.0 ], [ 9.198571477603769, 48.789954283029964, 0.0 ], [ 9.198664099780641, 48.790008706920091, 0.0 ], [ 9.198600594459744, 48.790055936440979, 0.0 ], [ 9.198570741374727, 48.790078109134569, 0.0 ], [ 9.198545642138816, 48.790063404937271, 0.0 ], [ 9.198548084355501, 48.790061512330347, 0.0 ], [ 9.198527486477591, 48.790049408153045, 0.0 ], [ 9.198480561387949, 48.790021792564609, 0.0 ], [ 9.198521541779176, 48.789991417661781, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000532d", "Latitude": 48.79004, "Longitude": 9.19855, "X_coordina": 3514661.2, "Y_coordina": 5405860.65, "LOD": "LOD2", "Year_of_co": 1997, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 104.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.9, "Total_wall": 140.7, "Total_wa00": 0.0, "Total_outw": 246.5, "Total_shar": 125.7, "Total_roof": 42.9, "Gross_volu": 359.3, "Is_Gross_v": "false", "Heated_vol": 327.4, "Ridge_mean": 8.4, "Eaves_mean": 8.39, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.668, "Heated_are": 104.8, "Mean_Uvalu": 0.72, "Specific_d": "73,0", "Specific_s": 91.0, "Total_Year": 17184.0, "January_He": 2221.0, "February_H": 1621.0, "March_Heat": 1074.0, "April_Heat": 318.0, "May_Heatin": 32.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 568.0, "November_H": 1464.0, "December_H": 2165.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198570741374727, 48.790078109134569, 0.0 ], [ 9.198555136487704, 48.790089736189813, 0.0 ], [ 9.198530032773588, 48.790108393662237, 0.0 ], [ 9.198437410557601, 48.790053969665372, 0.0 ], [ 9.198444602189186, 48.79004856185486, 0.0 ], [ 9.198480561387949, 48.790021792564609, 0.0 ], [ 9.198548084355501, 48.790061512330347, 0.0 ], [ 9.198545642138816, 48.790063404937271, 0.0 ], [ 9.198570741374727, 48.790078109134569, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000051b2", "Latitude": 48.79536, "Longitude": 9.20795, "X_coordina": 3515350.62, "Y_coordina": 5406453.95, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1225.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 228.3, "Total_wall": 978.0, "Total_wa00": 0.0, "Total_outw": 1251.8, "Total_shar": 231.0, "Total_roof": 228.3, "Gross_volu": 3829.2, "Is_Gross_v": "false", "Heated_vol": 3829.2, "Ridge_mean": 18.1, "Eaves_mean": 18.1, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 20, "Number_o00": 36, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.375, "Heated_are": 1225.3, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 31.7, "Total_Year": 58307.0, "January_He": 9666.0, "February_H": 6727.0, "March_Heat": 4246.0, "April_Heat": 955.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 83.0, "October_He": 1852.0, "November_H": 5882.0, "December_H": 9456.0, "PV_potenti": 8.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.207787001418049, 48.795319051123279, 0.0 ], [ 9.20783929947007, 48.795326959944518, 0.0 ], [ 9.207842257787995, 48.795318232021394, 0.0 ], [ 9.208007056248753, 48.795344371997658, 0.0 ], [ 9.208004097214399, 48.795352920079182, 0.0 ], [ 9.208046590807545, 48.795359677508664, 0.0 ], [ 9.208050223676391, 48.795349509584874, 0.0 ], [ 9.208063298484911, 48.795351554204679, 0.0 ], [ 9.208040691315432, 48.795414181834829, 0.0 ], [ 9.208030465412667, 48.795442795994887, 0.0 ], [ 9.207997097244462, 48.795437550778345, 0.0 ], [ 9.207992925506067, 48.795449068526707, 0.0 ], [ 9.207922240212838, 48.795438135574372, 0.0 ], [ 9.207866127319921, 48.795429334441337, 0.0 ], [ 9.207754037699692, 48.795411731847643, 0.0 ], [ 9.207787001418049, 48.795319051123279, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00004dc6", "Latitude": 48.7894, "Longitude": 9.20663, "X_coordina": 3515255.59, "Y_coordina": 5405790.68, "LOD": "LOD2", "Year_of_co": 1953, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 350.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 97.0, "Total_wall": 304.8, "Total_wa00": 0.0, "Total_outw": 440.8, "Total_shar": 155.7, "Total_roof": 97.0, "Gross_volu": 941.4, "Is_Gross_v": "false", "Heated_vol": 941.4, "Ridge_mean": 9.7, "Eaves_mean": 9.71, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.53, "Heated_are": 350.2, "Mean_Uvalu": 0.48, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206620988077086, 48.78949077318142, 0.0 ], [ 9.206533449449191, 48.789483106855144, 0.0 ], [ 9.206550734930348, 48.78938406992765, 0.0 ], [ 9.206556185471968, 48.789352586877726, 0.0 ], [ 9.206647945271504, 48.78936087507774, 0.0 ], [ 9.206620988077086, 48.78949077318142, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00004a0e", "Latitude": 48.78868, "Longitude": 9.21186, "X_coordina": 3515640.04, "Y_coordina": 5405712.07, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 95.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 43.1, "Total_wall": 49.1, "Total_wa00": 0.0, "Total_outw": 111.0, "Total_shar": 229.6, "Total_roof": 58.6, "Gross_volu": 341.3, "Is_Gross_v": "false", "Heated_vol": 298.2, "Ridge_mean": 9.9, "Eaves_mean": 5.9, "Storey_num": 3, "Average_St": 3.0, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.471, "Heated_are": 95.4, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.2, "Total_Year": 5541.0, "January_He": 1026.0, "February_H": 699.0, "March_Heat": 389.0, "April_Heat": 58.0, "May_Heatin": 1.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 193.0, "November_H": 651.0, "December_H": 1006.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.211757411445355, 48.788723656303212, 0.0 ], [ 9.211764164307672, 48.788679041755316, 0.0 ], [ 9.211825423179805, 48.788683425275778, 0.0 ], [ 9.21188218999646, 48.788687547257624, 0.0 ], [ 9.211874754143036, 48.788731533603411, 0.0 ], [ 9.211819213591408, 48.78872776905704, 0.0 ], [ 9.211757411445355, 48.788723656303212, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000049ab", "Latitude": 48.79565, "Longitude": 9.20959, "X_coordina": 3515470.65, "Y_coordina": 5406485.96, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 425.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 123.3, "Total_wall": 435.5, "Total_wa00": 0.0, "Total_outw": 678.0, "Total_shar": 0.0, "Total_roof": 179.3, "Gross_volu": 1398.7, "Is_Gross_v": "false", "Heated_vol": 1329.2, "Ridge_mean": 13.8, "Eaves_mean": 8.79, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 5, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.545, "Heated_are": 425.3, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 48.3, "Total_Year": 27270.0, "January_He": 5082.0, "February_H": 3503.0, "March_Heat": 2151.0, "April_Heat": 489.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 63.0, "October_He": 1040.0, "November_H": 3169.0, "December_H": 5014.0, "PV_potenti": 8.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209630868955127, 48.795682147883902, 0.0 ], [ 9.209616611243465, 48.795722909200528, 0.0 ], [ 9.20944173612069, 48.795696160389198, 0.0 ], [ 9.209455863099592, 48.795656658261386, 0.0 ], [ 9.209471066188293, 48.795614096773754, 0.0 ], [ 9.209645260878018, 48.795640936703158, 0.0 ], [ 9.209630868955127, 48.795682147883902, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000049ac", "Latitude": 48.79552, "Longitude": 9.20958, "X_coordina": 3515470.3, "Y_coordina": 5406471.45, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 28.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 35.1, "Total_wall": 54.8, "Total_wa00": 0.0, "Total_outw": 170.7, "Total_shar": 36.4, "Total_roof": 35.1, "Gross_volu": 112.0, "Is_Gross_v": "false", "Heated_vol": 89.4, "Ridge_mean": 3.2, "Eaves_mean": 3.19, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 1.24, "Heated_are": 28.6, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209471188120048, 48.795545305041912, 0.0 ], [ 9.209482891310603, 48.795512101966487, 0.0 ], [ 9.209544451114143, 48.795521431942582, 0.0 ], [ 9.209605330029248, 48.79553067320154, 0.0 ], [ 9.209594171719374, 48.79556396522117, 0.0 ], [ 9.209471188120048, 48.795545305041912, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00004950", "Latitude": 48.78761, "Longitude": 9.2056, "X_coordina": 3515179.83, "Y_coordina": 5405591.44, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 483.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 161.5, "Total_wall": 292.9, "Total_wa00": 0.0, "Total_outw": 566.9, "Total_shar": 152.5, "Total_roof": 253.6, "Gross_volu": 1661.7, "Is_Gross_v": "false", "Heated_vol": 1512.2, "Ridge_mean": 13.4, "Eaves_mean": 7.64, "Storey_num": 5, "Average_St": 2.5, "Number_of_": 6, "Number_o00": 9, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 0.45, "Heated_are": 483.9, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 43.6, "Total_Year": 28753.0, "January_He": 5093.0, "February_H": 3603.0, "March_Heat": 2345.0, "April_Heat": 623.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 72.0, "October_He": 1103.0, "November_H": 3205.0, "December_H": 5014.0, "PV_potenti": 11.72 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205679015441568, 48.787606490690742, 0.0 ], [ 9.205663550393892, 48.787651749915028, 0.0 ], [ 9.205650371592855, 48.787690350702924, 0.0 ], [ 9.205425828245959, 48.787657120022899, 0.0 ], [ 9.205454744988741, 48.787573349502885, 0.0 ], [ 9.205679015441568, 48.787606490690742, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000478d", "Latitude": 48.79116, "Longitude": 9.21106, "X_coordina": 3515580.55, "Y_coordina": 5405987.72, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 526.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 131.9, "Total_wall": 380.1, "Total_wa00": 0.0, "Total_outw": 560.1, "Total_shar": 166.0, "Total_roof": 196.6, "Gross_volu": 1659.9, "Is_Gross_v": "false", "Heated_vol": 1643.6, "Ridge_mean": 15.1, "Eaves_mean": 10.33, "Storey_num": 6, "Average_St": 2.5, "Number_of_": 7, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.43, "Heated_are": 526.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 44.4, "Total_Year": 31699.0, "January_He": 5628.0, "February_H": 4069.0, "March_Heat": 2578.0, "April_Heat": 539.0, "May_Heatin": 17.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 70.0, "October_He": 1295.0, "November_H": 3685.0, "December_H": 5488.0, "PV_potenti": 9.26 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.21099892517079, 48.791112071295856, 0.0 ], [ 9.211120593001509, 48.791143951041185, 0.0 ], [ 9.211036695389442, 48.79125893726814, 0.0 ], [ 9.21092058200375, 48.791221022379979, 0.0 ], [ 9.21099892517079, 48.791112071295856, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00004438", "Latitude": 48.79517, "Longitude": 9.20956, "X_coordina": 3515468.53, "Y_coordina": 5406433.34, "LOD": "LOD2", "Year_of_co": 1978, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 573.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 126.3, "Total_wall": 596.6, "Total_wa00": 0.0, "Total_outw": 854.1, "Total_shar": 0.0, "Total_roof": 127.1, "Gross_volu": 1482.1, "Is_Gross_v": "false", "Heated_vol": 1432.8, "Ridge_mean": 12.1, "Eaves_mean": 11.35, "Storey_num": 5, "Average_St": 2.3, "Number_of_": 7, "Number_o00": 15, "Attic_Heat": "NOT_HEATED", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.573, "Heated_are": 573.8, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 37.4, "Total_Year": 30560.0, "January_He": 5580.0, "February_H": 3726.0, "March_Heat": 2003.0, "April_Heat": 277.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 921.0, "November_H": 3421.0, "December_H": 5509.0, "PV_potenti": 5.43 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209496312126509, 48.795106882050966, 0.0 ], [ 9.209574765084369, 48.79512013791517, 0.0 ], [ 9.209586342351814, 48.79512209516399, 0.0 ], [ 9.209529034395613, 48.795283881986599, 0.0 ], [ 9.209439007641109, 48.79526956805838, 0.0 ], [ 9.209496312126509, 48.795106882050966, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00004273", "Latitude": 48.79112, "Longitude": 9.20927, "X_coordina": 3515448.95, "Y_coordina": 5405982.91, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 122.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 48.4, "Total_wall": 68.1, "Total_wa00": 0.0, "Total_outw": 134.2, "Total_shar": 230.4, "Total_roof": 67.5, "Gross_volu": 400.5, "Is_Gross_v": "false", "Heated_vol": 383.5, "Ridge_mean": 10.3, "Eaves_mean": 6.23, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.47, "Heated_are": 122.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 41.8, "Total_Year": 7073.0, "January_He": 1276.0, "February_H": 871.0, "March_Heat": 544.0, "April_Heat": 136.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 15.0, "October_He": 243.0, "November_H": 774.0, "December_H": 1265.0, "PV_potenti": 2.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209202553069058, 48.791103478695788, 0.0 ], [ 9.209279351981049, 48.79111323075351, 0.0 ], [ 9.209267264567151, 48.791152009795852, 0.0 ], [ 9.209256252064177, 48.791187459709882, 0.0 ], [ 9.209179315452662, 48.791177348192555, 0.0 ], [ 9.209190599077116, 48.791141628022487, 0.0 ], [ 9.209202553069058, 48.791103478695788, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00003efe", "Latitude": 48.78912, "Longitude": 9.19991, "X_coordina": 3514761.48, "Y_coordina": 5405757.68, "LOD": "LOD2", "Year_of_co": 1984, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 739.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 164.8, "Total_wall": 437.8, "Total_wa00": 0.0, "Total_outw": 648.5, "Total_shar": 307.7, "Total_roof": 217.8, "Gross_volu": 2476.0, "Is_Gross_v": "false", "Heated_vol": 2311.2, "Ridge_mean": 17.7, "Eaves_mean": 12.82, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 12, "Number_o00": 19, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.346, "Heated_are": 739.6, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 32.7, "Total_Year": 35921.0, "January_He": 6001.0, "February_H": 4201.0, "March_Heat": 2672.0, "April_Heat": 528.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 50.0, "October_He": 1176.0, "November_H": 3706.0, "December_H": 5861.0, "PV_potenti": 8.89 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19977179130699, 48.789192801899787, 0.0 ], [ 9.199767235094811, 48.789142092870264, 0.0 ], [ 9.199762398145259, 48.789089226159689, 0.0 ], [ 9.199810430055296, 48.789087164508338, 0.0 ], [ 9.199892479096963, 48.789083694939237, 0.0 ], [ 9.199961873904742, 48.789080786827533, 0.0 ], [ 9.199967855167388, 48.789147589707177, 0.0 ], [ 9.199951119295539, 48.789148428080374, 0.0 ], [ 9.199955077023843, 48.789185469748418, 0.0 ], [ 9.19977179130699, 48.789192801899787, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00003ec9", "Latitude": 48.78914, "Longitude": 9.19933, "X_coordina": 3514719.07, "Y_coordina": 5405759.83, "LOD": "LOD2", "Year_of_co": 1970, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 881.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 168.4, "Total_wall": 476.4, "Total_wa00": 0.0, "Total_outw": 672.6, "Total_shar": 474.6, "Total_roof": 246.1, "Gross_volu": 2924.0, "Is_Gross_v": "false", "Heated_vol": 2755.7, "Ridge_mean": 21.9, "Eaves_mean": 14.51, "Storey_num": 8, "Average_St": 2.6, "Number_of_": 14, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.316, "Heated_are": 881.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 33.7, "Total_Year": 43698.0, "January_He": 7245.0, "February_H": 5142.0, "March_Heat": 3402.0, "April_Heat": 805.0, "May_Heatin": 25.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 73.0, "October_He": 1463.0, "November_H": 4464.0, "December_H": 7111.0, "PV_potenti": 10.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199394465369551, 48.789206674637306, 0.0 ], [ 9.199190086558231, 48.789214312155437, 0.0 ], [ 9.199185950589612, 48.789166479932767, 0.0 ], [ 9.199181669285242, 48.789116309946245, 0.0 ], [ 9.199238410653283, 48.789114143544879, 0.0 ], [ 9.199237702078156, 48.789107040803131, 0.0 ], [ 9.199246389054917, 48.789101270659934, 0.0 ], [ 9.199275916316767, 48.789100140483548, 0.0 ], [ 9.199285058206398, 48.789106149547294, 0.0 ], [ 9.19928453984113, 48.7891127148702, 0.0 ], [ 9.199385639786406, 48.789108763073472, 0.0 ], [ 9.199390193117329, 48.789158842657855, 0.0 ], [ 9.199394465369551, 48.789206674637306, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00003c55", "Latitude": 48.79526, "Longitude": 9.20931, "X_coordina": 3515450.01, "Y_coordina": 5406442.98, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 228.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 82.9, "Total_wall": 215.5, "Total_wa00": 0.0, "Total_outw": 359.0, "Total_shar": 132.6, "Total_roof": 121.3, "Gross_volu": 767.4, "Is_Gross_v": "false", "Heated_vol": 712.4, "Ridge_mean": 11.3, "Eaves_mean": 6.94, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 3, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.568, "Heated_are": 228.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 48.2, "Total_Year": 14605.0, "January_He": 2770.0, "February_H": 1870.0, "March_Heat": 1104.0, "April_Heat": 235.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 30.0, "October_He": 534.0, "November_H": 1698.0, "December_H": 2744.0, "PV_potenti": 4.44 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209181379116924, 48.795307894121464, 0.0 ], [ 9.209194163445737, 48.795272800715686, 0.0 ], [ 9.209207485452838, 48.795236087707657, 0.0 ], [ 9.209340687416098, 48.795257427301131, 0.0 ], [ 9.209327910301356, 48.795294229257536, 0.0 ], [ 9.209315669739308, 48.795329141842586, 0.0 ], [ 9.209301641390777, 48.795326919250812, 0.0 ], [ 9.209264050867057, 48.795320962686489, 0.0 ], [ 9.20922087623711, 48.795314117019572, 0.0 ], [ 9.209181379116924, 48.795307894121464, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00003b25", "Latitude": 48.7888, "Longitude": 9.19578, "X_coordina": 3514457.8, "Y_coordina": 5405721.84, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 915.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 194.9, "Total_wall": 461.4, "Total_wa00": 0.0, "Total_outw": 693.0, "Total_shar": 450.7, "Total_roof": 227.6, "Gross_volu": 2969.3, "Is_Gross_v": "false", "Heated_vol": 2862.2, "Ridge_mean": 17.0, "Eaves_mean": 13.4, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 15, "Number_o00": 21, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.5, "Surface_ar": 0.304, "Heated_are": 915.9, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 32.7, "Total_Year": 44500.0, "January_He": 7376.0, "February_H": 5241.0, "March_Heat": 3295.0, "April_Heat": 641.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 60.0, "October_He": 1534.0, "November_H": 4660.0, "December_H": 7171.0, "PV_potenti": 11.08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195611498543213, 48.788776583516444, 0.0 ], [ 9.195688710126426, 48.788754061344193, 0.0 ], [ 9.195761299859676, 48.788732895832005, 0.0 ], [ 9.195850818291852, 48.788865380995006, 0.0 ], [ 9.195777823285677, 48.788887356564892, 0.0 ], [ 9.195701973832463, 48.788910236176001, 0.0 ], [ 9.195611498543213, 48.788776583516444, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000039fd", "Latitude": 48.79351, "Longitude": 9.19268, "X_coordina": 3514229.2, "Y_coordina": 5406245.11, "LOD": "LOD2", "Year_of_co": 2007, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2090, "PrimaryUsa": "hall", "PrimaryU00": 26198.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "HH", "Footprint_": 2869.0, "Total_wall": 5647.7, "Total_wa00": 0.0, "Total_outw": 6420.9, "Total_shar": 2284.3, "Total_roof": 2869.0, "Gross_volu": 82094.0, "Is_Gross_v": "false", "Heated_vol": 81871.1, "Ridge_mean": 33.9, "Eaves_mean": 33.88, "Storey_num": 13, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.139, "Heated_are": 26198.7, "Mean_Uvalu": 0.37, "Specific_d": "non calculated", "Specific_s": 59.2, "Total_Year": 1550254.0, "January_He": 257683.0, "February_H": 210064.0, "March_Heat": 186686.0, "April_Heat": 121999.0, "May_Heatin": 65819.0, "June_Heati": 24981, "July_Heati": 9336, "August_Hea": 14576, "September_": 76290.0, "October_He": 136019.0, "November_H": 196374.0, "December_H": 250427.0, "PV_potenti": 137.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.192405434237489, 48.793318271476657, 0.0 ], [ 9.192411263905161, 48.793312326780004, 0.0 ], [ 9.192415466887914, 48.793308093349069, 0.0 ], [ 9.192419265004542, 48.793304759830271, 0.0 ], [ 9.192352018801133, 48.793230505380521, 0.0 ], [ 9.192340947851278, 48.79321829426646, 0.0 ], [ 9.192476981513515, 48.793164832211453, 0.0 ], [ 9.19253188410406, 48.793143248694683, 0.0 ], [ 9.192548286079715, 48.793161475756371, 0.0 ], [ 9.193054417394926, 48.793720762280458, 0.0 ], [ 9.193081890644622, 48.793751110384726, 0.0 ], [ 9.192891770563437, 48.793826425263248, 0.0 ], [ 9.192884936119553, 48.793818793208054, 0.0 ], [ 9.192767194736774, 48.79388679273638, 0.0 ], [ 9.192693212355058, 48.793830894176992, 0.0 ], [ 9.192535815310476, 48.793921620558557, 0.0 ], [ 9.192433440834829, 48.793844097720985, 0.0 ], [ 9.192195796984535, 48.793664197848862, 0.0 ], [ 9.192349391229696, 48.79357563644546, 0.0 ], [ 9.192316588194524, 48.793539452034878, 0.0 ], [ 9.192284058441441, 48.793503536929109, 0.0 ], [ 9.192362199501281, 48.793472652560425, 0.0 ], [ 9.192360141127461, 48.793468249743832, 0.0 ], [ 9.192357392275046, 48.793461240296992, 0.0 ], [ 9.192355051385153, 48.793454140245032, 0.0 ], [ 9.192353118457614, 48.793446949587981, 0.0 ], [ 9.192351177967733, 48.793437780624913, 0.0 ], [ 9.192350199128892, 48.793430948068384, 0.0 ], [ 9.192349490431253, 48.793423575519157, 0.0 ], [ 9.192349189695276, 48.793416112364902, 0.0 ], [ 9.19234943371003, 48.793408738224294, 0.0 ], [ 9.192350084310979, 48.793400913786627, 0.0 ], [ 9.192351283099891, 48.793394077592581, 0.0 ], [ 9.192352889162137, 48.793386970947481, 0.0 ], [ 9.192354767427226, 48.793379863847669, 0.0 ], [ 9.192357054340421, 48.793372845988749, 0.0 ], [ 9.19235961345619, 48.793365827675075, 0.0 ], [ 9.19236001832317, 48.793364927763015, 0.0 ], [ 9.192362042314043, 48.793360338279712, 0.0 ], [ 9.192365554139473, 48.793353318374386, 0.0 ], [ 9.192369338510815, 48.793346387937255, 0.0 ], [ 9.192373667631056, 48.793339546513494, 0.0 ], [ 9.192378269296968, 48.79333279455782, 0.0 ], [ 9.192381112988283, 48.793329013016908, 0.0 ], [ 9.192391606901415, 48.793332682351355, 0.0 ], [ 9.192393911343361, 48.793330250564686, 0.0 ], [ 9.192399604912289, 48.793324306096025, 0.0 ], [ 9.192405434237489, 48.793318271476657, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000039ef", "Latitude": 48.78822, "Longitude": 9.20953, "X_coordina": 3515469.01, "Y_coordina": 5405660.29, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 142.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 53.6, "Total_wall": 87.4, "Total_wa00": 0.0, "Total_outw": 160.2, "Total_shar": 200.4, "Total_roof": 84.0, "Gross_volu": 489.8, "Is_Gross_v": "false", "Heated_vol": 445.8, "Ridge_mean": 11.4, "Eaves_mean": 6.85, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 2, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.483, "Heated_are": 142.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 45.2, "Total_Year": 8707.0, "January_He": 1552.0, "February_H": 1091.0, "March_Heat": 721.0, "April_Heat": 205.0, "May_Heatin": 12.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 26.0, "October_He": 341.0, "November_H": 970.0, "December_H": 1530.0, "PV_potenti": 3.27 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209442001778518, 48.788239065615777, 0.0 ], [ 9.209455189790251, 48.788203341937979, 0.0 ], [ 9.209549563955266, 48.788218906890343, 0.0 ], [ 9.209536374134531, 48.788254180963868, 0.0 ], [ 9.209525068933621, 48.788284505805635, 0.0 ], [ 9.209431102541997, 48.788268850168151, 0.0 ], [ 9.209442001778518, 48.788239065615777, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000037fb", "Latitude": 48.7903, "Longitude": 9.19827, "X_coordina": 3514640.46, "Y_coordina": 5405888.83, "LOD": "LOD2", "Year_of_co": 2006, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 885.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 209.9, "Total_wall": 493.2, "Total_wa00": 0.0, "Total_outw": 707.4, "Total_shar": 273.4, "Total_roof": 209.9, "Gross_volu": 2391.8, "Is_Gross_v": "false", "Heated_vol": 2391.8, "Ridge_mean": 12.2, "Eaves_mean": 12.18, "Storey_num": 5, "Average_St": 2.4, "Number_of_": 11, "Number_o00": 16, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.382, "Heated_are": 885.9, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 32.2, "Total_Year": 42570.0, "January_He": 6589.0, "February_H": 4987.0, "March_Heat": 3509.0, "April_Heat": 988.0, "May_Heatin": 30.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 105.0, "October_He": 1666.0, "November_H": 4319.0, "December_H": 6345.0, "PV_potenti": 9.78 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198173533068864, 48.790263316660038, 0.0 ], [ 9.198200266213867, 48.790243667301453, 0.0 ], [ 9.19819099027834, 48.790238197925284, 0.0 ], [ 9.198208900731368, 48.790224498707936, 0.0 ], [ 9.198361270790505, 48.790314070044204, 0.0 ], [ 9.198227201309329, 48.790413486662061, 0.0 ], [ 9.198084380374132, 48.790329653836451, 0.0 ], [ 9.198164713216835, 48.790269986186061, 0.0 ], [ 9.198173533068864, 48.790263316660038, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000037e9", "Latitude": 48.79271, "Longitude": 9.19886, "X_coordina": 3514683.48, "Y_coordina": 5406157.46, "LOD": "LOD2", "Year_of_co": 1976, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3071, "PrimaryUsa": "office and administration", "PrimaryU00": 399.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 151.2, "Total_wall": 315.2, "Total_wa00": 0.0, "Total_outw": 617.6, "Total_shar": 58.4, "Total_roof": 231.5, "Gross_volu": 1398.5, "Is_Gross_v": "false", "Heated_vol": 1247.3, "Ridge_mean": 12.2, "Eaves_mean": 7.19, "Storey_num": 4, "Average_St": 2.8, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.535, "Heated_are": 399.1, "Mean_Uvalu": 0.48, "Specific_d": "14,6", "Specific_s": 67.3, "Total_Year": 32709.0, "January_He": 6216.0, "February_H": 4512.0, "March_Heat": 3089.0, "April_Heat": 1016.0, "May_Heatin": 115.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 225.0, "October_He": 1627.0, "November_H": 4010.0, "December_H": 6065.0, "PV_potenti": 8.49 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198903848758336, 48.792751142900528, 0.0 ], [ 9.198940409565488, 48.792772841252635, 0.0 ], [ 9.19891910443976, 48.792788704607517, 0.0 ], [ 9.198902141705169, 48.792801323209147, 0.0 ], [ 9.198863814437319, 48.792780347284214, 0.0 ], [ 9.198827446243349, 48.792807387157993, 0.0 ], [ 9.198695531061489, 48.792730010791821, 0.0 ], [ 9.198789843700045, 48.792659797549099, 0.0 ], [ 9.198922304308105, 48.792737442636827, 0.0 ], [ 9.198903848758336, 48.792751142900528, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00003380", "Latitude": 48.78807, "Longitude": 9.21032, "X_coordina": 3515526.53, "Y_coordina": 5405642.97, "LOD": "LOD2", "Year_of_co": 1929, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 160.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 57.8, "Total_wall": 159.2, "Total_wa00": 0.0, "Total_outw": 274.5, "Total_shar": 128.3, "Total_roof": 99.6, "Gross_volu": 560.4, "Is_Gross_v": "false", "Heated_vol": 502.6, "Ridge_mean": 12.8, "Eaves_mean": 6.52, "Storey_num": 4, "Average_St": 3.0, "Number_of_": 2, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.601, "Heated_are": 160.8, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 57.2, "Total_Year": 11742.0, "January_He": 2195.0, "February_H": 1580.0, "March_Heat": 1011.0, "April_Heat": 234.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 36.0, "October_He": 527.0, "November_H": 1454.0, "December_H": 2146.0, "PV_potenti": 4.21 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210282819442888, 48.78805849534897, 0.0 ], [ 9.210341509817844, 48.788067200684289, 0.0 ], [ 9.21032296616411, 48.788123796534776, 0.0 ], [ 9.210263323115507, 48.788115092929495, 0.0 ], [ 9.210203407537366, 48.788106299867117, 0.0 ], [ 9.210223311814389, 48.788049611628281, 0.0 ], [ 9.210282819442888, 48.78805849534897, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00003310", "Latitude": 48.7887, "Longitude": 9.21026, "X_coordina": 3515522.36, "Y_coordina": 5405713.24, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 102.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 47.9, "Total_wall": 92.3, "Total_wa00": 0.0, "Total_outw": 188.4, "Total_shar": 168.4, "Total_roof": 64.7, "Gross_volu": 368.0, "Is_Gross_v": "false", "Heated_vol": 320.2, "Ridge_mean": 9.4, "Eaves_mean": 5.95, "Storey_num": 3, "Average_St": 2.8, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.594, "Heated_are": 102.5, "Mean_Uvalu": 0.51, "Specific_d": "15,8", "Specific_s": 56.0, "Total_Year": 7362.0, "January_He": 1425.0, "February_H": 981.0, "March_Heat": 589.0, "April_Heat": 109.0, "May_Heatin": 4.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 17.0, "October_He": 303.0, "November_H": 918.0, "December_H": 1394.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.210169484260378, 48.788749136063963, 0.0 ], [ 9.210169335779154, 48.788746168854516, 0.0 ], [ 9.210165345040588, 48.788703012785703, 0.0 ], [ 9.210164483070344, 48.788692133597095, 0.0 ], [ 9.21021591713345, 48.788690241247103, 0.0 ], [ 9.210266534659743, 48.788688350365049, 0.0 ], [ 9.210272216409704, 48.788745351584886, 0.0 ], [ 9.210220918381495, 48.788747243711654, 0.0 ], [ 9.210169484260378, 48.788749136063963, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00002d83", "Latitude": 48.79385, "Longitude": 9.213, "X_coordina": 3515721.84, "Y_coordina": 5406286.98, "LOD": "LOD2", "Year_of_co": 2009, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2050, "PrimaryUsa": "retail", "PrimaryU00": 1632.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 650.0, "Total_wall": 957.9, "Total_wa00": 0.0, "Total_outw": 1649.3, "Total_shar": 0.0, "Total_roof": 650.0, "Gross_volu": 5324.8, "Is_Gross_v": "false", "Heated_vol": 5102.3, "Ridge_mean": 10.5, "Eaves_mean": 10.54, "Storey_num": 4, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.432, "Heated_are": 1632.7, "Mean_Uvalu": 0.42, "Specific_d": "73,0", "Specific_s": 53.9, "Total_Year": 207141.0, "January_He": 19726.0, "February_H": 14861.0, "March_Heat": 10736.0, "April_Heat": 3918.0, "May_Heatin": 463.0, "June_Heati": 15, "July_Heati": 1, "August_Hea": 3, "September_": 836.0, "October_He": 5443.0, "November_H": 12844.0, "December_H": 19090.0, "PV_potenti": 31.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213217758831, 48.793774785614737, 0.0 ], [ 9.213227934936201, 48.793783372459529, 0.0 ], [ 9.213235033900936, 48.793794887517166, 0.0 ], [ 9.213239916415962, 48.793806883273355, 0.0 ], [ 9.213242513742573, 48.793819197993209, 0.0 ], [ 9.213242797782113, 48.793831624904747, 0.0 ], [ 9.213240740550182, 48.793843984212629, 0.0 ], [ 9.213236382037545, 48.793856078010812, 0.0 ], [ 9.213229789493784, 48.793867717335068, 0.0 ], [ 9.213219568138619, 48.793883787617226, 0.0 ], [ 9.21320758880193, 48.793899330604035, 0.0 ], [ 9.213193946373497, 48.793914256195727, 0.0 ], [ 9.213178694950662, 48.793928483360354, 0.0 ], [ 9.213161915889723, 48.793941940007855, 0.0 ], [ 9.213113072297359, 48.79397826960335, 0.0 ], [ 9.213091951947639, 48.793972553577092, 0.0 ], [ 9.213090873465694, 48.793978211765094, 0.0 ], [ 9.213087888207323, 48.793983558748785, 0.0 ], [ 9.213083158391395, 48.793988333449477, 0.0 ], [ 9.213076927898932, 48.79399227463739, 0.0 ], [ 9.213069536035766, 48.793995156875589, 0.0 ], [ 9.213061336099196, 48.793996844624871, 0.0 ], [ 9.213052776963526, 48.793997274108158, 0.0 ], [ 9.213044294007133, 48.793996408550463, 0.0 ], [ 9.213036322951028, 48.79399429210762, 0.0 ], [ 9.213029299782558, 48.793991031881518, 0.0 ], [ 9.21302356552115, 48.793986807088608, 0.0 ], [ 9.21301943415564, 48.793981841957276, 0.0 ], [ 9.213017110868172, 48.793976378901746, 0.0 ], [ 9.213016731532893, 48.793970363716682, 0.0 ], [ 9.213018571248369, 48.793964479312358, 0.0 ], [ 9.213022508891591, 48.793959049637586, 0.0 ], [ 9.21302831453349, 48.793954416826985, 0.0 ], [ 9.213002151921172, 48.793947181410665, 0.0 ], [ 9.212985391459968, 48.793942536383639, 0.0 ], [ 9.212941514163798, 48.793930297994393, 0.0 ], [ 9.212868613109944, 48.793910110042482, 0.0 ], [ 9.212798103860617, 48.793940544594292, 0.0 ], [ 9.212729631890175, 48.793969986180272, 0.0 ], [ 9.212667027990106, 48.793906525842807, 0.0 ], [ 9.212931543522432, 48.793793362832972, 0.0 ], [ 9.212959355388783, 48.7937818911129, 0.0 ], [ 9.212988302412411, 48.793771721178459, 0.0 ], [ 9.213018248682712, 48.793762898241994, 0.0 ], [ 9.213041321672639, 48.793757280299722, 0.0 ], [ 9.213065053660662, 48.793753009987192, 0.0 ], [ 9.21308924057098, 48.793750105666298, 0.0 ], [ 9.213113732845107, 48.793748603582962, 0.0 ], [ 9.213130226635252, 48.793748141426121, 0.0 ], [ 9.213146658620706, 48.793749154127887, 0.0 ], [ 9.213162729263203, 48.793751615265663, 0.0 ], [ 9.213178152634576, 48.793755498391789, 0.0 ], [ 9.213192628967613, 48.793760723130262, 0.0 ], [ 9.213205912859543, 48.793767191019818, 0.0 ], [ 9.213217758831, 48.793774785614737, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00002d2c", "Latitude": 48.79537, "Longitude": 9.209, "X_coordina": 3515427.4, "Y_coordina": 5406455.4, "LOD": "LOD2", "Year_of_co": 1956, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 293.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 83.0, "Total_wall": 280.4, "Total_wa00": 0.0, "Total_outw": 423.1, "Total_shar": 161.8, "Total_roof": 109.1, "Gross_volu": 941.4, "Is_Gross_v": "false", "Heated_vol": 916.4, "Ridge_mean": 13.6, "Eaves_mean": 8.85, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 4, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.511, "Heated_are": 293.2, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 42.5, "Total_Year": 17106.0, "January_He": 3197.0, "February_H": 2120.0, "March_Heat": 1212.0, "April_Heat": 238.0, "May_Heatin": 10.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 27.0, "October_He": 568.0, "November_H": 1916.0, "December_H": 3174.0, "PV_potenti": 5.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20903941397455, 48.79537226739091, 0.0 ], [ 9.20902811062594, 48.795403491378345, 0.0 ], [ 9.209012720078979, 48.795401001453286, 0.0 ], [ 9.208999406477584, 48.795439782664005, 0.0 ], [ 9.208939345545103, 48.795430809371418, 0.0 ], [ 9.208868117138989, 48.795420237678712, 0.0 ], [ 9.208893685525595, 48.795349871089869, 0.0 ], [ 9.208963825729517, 48.795360624588561, 0.0 ], [ 9.20903941397455, 48.79537226739091, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00002b12", "Latitude": 48.79107, "Longitude": 9.20889, "X_coordina": 3515420.47, "Y_coordina": 5405977.12, "LOD": "LOD2", "Year_of_co": 1988, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 124.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.0, "Total_wall": 69.5, "Total_wa00": 0.0, "Total_outw": 133.6, "Total_shar": 226.2, "Total_roof": 68.2, "Gross_volu": 400.5, "Is_Gross_v": "false", "Heated_vol": 389.7, "Ridge_mean": 10.2, "Eaves_mean": 6.11, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 0.473, "Heated_are": 124.7, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 42.0, "Total_Year": 7207.0, "January_He": 1299.0, "February_H": 888.0, "March_Heat": 557.0, "April_Heat": 141.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 16.0, "October_He": 250.0, "November_H": 790.0, "December_H": 1287.0, "PV_potenti": 3.36 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208802915556179, 48.791089366594306, 0.0 ], [ 9.208814464529089, 48.791051937430801, 0.0 ], [ 9.208891809535448, 48.791062138374699, 0.0 ], [ 9.208880261737495, 48.791099837314604, 0.0 ], [ 9.208869117356638, 48.791136366514465, 0.0 ], [ 9.208791501915419, 48.791126615663821, 0.0 ], [ 9.208802915556179, 48.791089366594306, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000029ee", "Latitude": 48.79065, "Longitude": 9.2132, "X_coordina": 3515737.44, "Y_coordina": 5405931.25, "LOD": "LOD2", "Year_of_co": 1964, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 471.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 131.0, "Total_wall": 299.0, "Total_wa00": 0.0, "Total_outw": 483.2, "Total_shar": 256.3, "Total_roof": 186.2, "Gross_volu": 1605.0, "Is_Gross_v": "false", "Heated_vol": 1474.0, "Ridge_mean": 14.7, "Eaves_mean": 9.65, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 6, "Number_o00": 7, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.403, "Heated_are": 471.7, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 39.5, "Total_Year": 26079.0, "January_He": 4512.0, "February_H": 3192.0, "March_Heat": 2091.0, "April_Heat": 531.0, "May_Heatin": 21.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 55.0, "October_He": 940.0, "November_H": 2816.0, "December_H": 4449.0, "PV_potenti": 8.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213062637650472, 48.790681584119469, 0.0 ], [ 9.213061742457704, 48.790630868853903, 0.0 ], [ 9.213065825278804, 48.790630861300194, 0.0 ], [ 9.213247508910815, 48.790630075399029, 0.0 ], [ 9.213247435246529, 48.790676925741565, 0.0 ], [ 9.213247327669281, 48.790715772944431, 0.0 ], [ 9.213059659006705, 48.790717379230813, 0.0 ], [ 9.213059915766991, 48.790681589155213, 0.0 ], [ 9.213062637650472, 48.790681584119469, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00001ff2", "Latitude": 48.79219, "Longitude": 9.19805, "X_coordina": 3514623.66, "Y_coordina": 5406099.3, "LOD": "LOD2", "Year_of_co": 1968, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 311.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 96.3, "Total_wall": 266.1, "Total_wa00": 0.0, "Total_outw": 405.9, "Total_shar": 150.8, "Total_roof": 173.2, "Gross_volu": 1000.8, "Is_Gross_v": "false", "Heated_vol": 974.5, "Ridge_mean": 13.3, "Eaves_mean": 6.4, "Storey_num": 5, "Average_St": 2.6, "Number_of_": 4, "Number_o00": 8, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.3, "Surface_ar": 0.543, "Heated_are": 311.8, "Mean_Uvalu": 0.5, "Specific_d": "15,8", "Specific_s": 50.3, "Total_Year": 20630.0, "January_He": 3855.0, "February_H": 2688.0, "March_Heat": 1655.0, "April_Heat": 348.0, "May_Heatin": 14.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 51.0, "October_He": 842.0, "November_H": 2453.0, "December_H": 3785.0, "PV_potenti": 5.28 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19808244255375, 48.792188378147642, 0.0 ], [ 9.198098266428646, 48.792197613057681, 0.0 ], [ 9.197990783614882, 48.792275851584371, 0.0 ], [ 9.197947133364096, 48.792250837942881, 0.0 ], [ 9.197904983422927, 48.792226631018693, 0.0 ], [ 9.19791489031684, 48.792219420105013, 0.0 ], [ 9.19791761546926, 48.79222022473369, 0.0 ], [ 9.197959821102012, 48.792189398318612, 0.0 ], [ 9.198004062849826, 48.792157219533024, 0.0 ], [ 9.19800201606783, 48.792155874198414, 0.0 ], [ 9.198012328751709, 48.792148033113406, 0.0 ], [ 9.19805256905463, 48.79217116419985, 0.0 ], [ 9.19808244255375, 48.792188378147642, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00001ff3", "Latitude": 48.79211, "Longitude": 9.19814, "X_coordina": 3514630.34, "Y_coordina": 5406090.78, "LOD": "LOD2", "Year_of_co": 1961, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 18.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "EFH", "Footprint_": 23.1, "Total_wall": 43.8, "Total_wa00": 0.0, "Total_outw": 141.0, "Total_shar": 24.6, "Total_roof": 23.1, "Gross_volu": 62.9, "Is_Gross_v": "false", "Heated_vol": 57.9, "Ridge_mean": 2.7, "Eaves_mean": 2.72, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.492, "Heated_are": 18.5, "Mean_Uvalu": 0.38, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198069724167924, 48.792103691998406, 0.0 ], [ 9.198143376508584, 48.792144030909512, 0.0 ], [ 9.198112843619663, 48.792166744187611, 0.0 ], [ 9.198041229911928, 48.792125682362432, 0.0 ], [ 9.198069724167924, 48.792103691998406, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00001f9d", "Latitude": 48.79155, "Longitude": 9.19993, "X_coordina": 3514762.05, "Y_coordina": 5406028.71, "LOD": "LOD2", "Year_of_co": 1960, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1584.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 227.5, "Total_wall": 1003.0, "Total_wa00": 0.0, "Total_outw": 1270.9, "Total_shar": 332.5, "Total_roof": 342.0, "Gross_volu": 4962.1, "Is_Gross_v": "false", "Heated_vol": 4952.0, "Ridge_mean": 22.5, "Eaves_mean": 17.9, "Storey_num": 9, "Average_St": 2.5, "Number_of_": 25, "Number_o00": 35, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.317, "Heated_are": 1584.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 35.1, "Total_Year": 80790.0, "January_He": 13593.0, "February_H": 9715.0, "March_Heat": 6183.0, "April_Heat": 1270.0, "May_Heatin": 33.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 134.0, "October_He": 2933.0, "November_H": 8603.0, "December_H": 13225.0, "PV_potenti": 14.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200037777963422, 48.791537098614207, 0.0 ], [ 9.199868568397207, 48.791664004855214, 0.0 ], [ 9.199840674595073, 48.791665581966157, 0.0 ], [ 9.199727583608524, 48.7915986052354, 0.0 ], [ 9.199747936370619, 48.791583013150465, 0.0 ], [ 9.19982839783099, 48.79152145573461, 0.0 ], [ 9.199836945844989, 48.791514876478033, 0.0 ], [ 9.199873505082582, 48.791536304770645, 0.0 ], [ 9.199944741413651, 48.791482226943607, 0.0 ], [ 9.199955518403087, 48.791488592807148, 0.0 ], [ 9.200015542033194, 48.791524008391669, 0.0 ], [ 9.200037777963422, 48.791537098614207, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00001d57", "Latitude": 48.7915, "Longitude": 9.21347, "X_coordina": 3515757.16, "Y_coordina": 5406025.49, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 560.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 150.0, "Total_wall": 258.7, "Total_wa00": 0.0, "Total_outw": 461.6, "Total_shar": 393.9, "Total_roof": 211.1, "Gross_volu": 1900.8, "Is_Gross_v": "false", "Heated_vol": 1750.8, "Ridge_mean": 15.3, "Eaves_mean": 10.01, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 11, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.341, "Heated_are": 560.3, "Mean_Uvalu": 0.47, "Specific_d": "15,8", "Specific_s": 35.8, "Total_Year": 28913.0, "January_He": 4891.0, "February_H": 3522.0, "March_Heat": 2197.0, "April_Heat": 410.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 42.0, "October_He": 1050.0, "November_H": 3155.0, "December_H": 4764.0, "PV_potenti": 10.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.213528749800146, 48.791480141743044, 0.0 ], [ 9.213455346111509, 48.791597358356945, 0.0 ], [ 9.213389535169732, 48.791579495598633, 0.0 ], [ 9.213322361403085, 48.791561185709128, 0.0 ], [ 9.213353576677079, 48.791508522573103, 0.0 ], [ 9.213394132956937, 48.791444152050751, 0.0 ], [ 9.213463212704099, 48.79146263821314, 0.0 ], [ 9.213528749800146, 48.791480141743044, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000019fe", "Latitude": 48.78785, "Longitude": 9.21248, "X_coordina": 3515685.52, "Y_coordina": 5405619.22, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 551.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 178.3, "Total_wall": 412.3, "Total_wa00": 0.0, "Total_outw": 494.8, "Total_shar": 136.5, "Total_roof": 173.8, "Gross_volu": 1900.7, "Is_Gross_v": "true", "Heated_vol": 1722.4, "Ridge_mean": 15.7, "Eaves_mean": 10.21, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.419, "Heated_are": 551.2, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 28390.0, "January_He": 4835.0, "February_H": 3448.0, "March_Heat": 2126.0, "April_Heat": 382.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 1008.0, "November_H": 3106.0, "December_H": 4708.0, "PV_potenti": 7.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212482414851078, 48.787820265214258, 14.7732 ], [ 9.212508334604777, 48.787824257657483, 12.4983 ], [ 9.212495976062559, 48.787859287744531, 12.4768 ], [ 9.212470056291792, 48.787855295298584, 14.7518 ], [ 9.212482414851078, 48.787820265214258, 14.7732 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000019fe", "Latitude": 48.78785, "Longitude": 9.21248, "X_coordina": 3515685.52, "Y_coordina": 5405619.22, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 551.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 178.3, "Total_wall": 412.3, "Total_wa00": 0.0, "Total_outw": 494.8, "Total_shar": 136.5, "Total_roof": 173.8, "Gross_volu": 1900.7, "Is_Gross_v": "true", "Heated_vol": 1722.4, "Ridge_mean": 15.7, "Eaves_mean": 10.21, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.419, "Heated_are": 551.2, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 28390.0, "January_He": 4835.0, "February_H": 3448.0, "March_Heat": 2126.0, "April_Heat": 382.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 1008.0, "November_H": 3106.0, "December_H": 4708.0, "PV_potenti": 7.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212384286648151, 48.787913241153348, 14.3358 ], [ 9.212362714629553, 48.78790983865732, 12.4401 ], [ 9.212399367634154, 48.787808377634718, 12.5023 ], [ 9.212420940976386, 48.787811781020736, 14.3981 ], [ 9.212384286648151, 48.787913241153348, 14.3358 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000019fe", "Latitude": 48.78785, "Longitude": 9.21248, "X_coordina": 3515685.52, "Y_coordina": 5405619.22, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 551.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 178.3, "Total_wall": 412.3, "Total_wa00": 0.0, "Total_outw": 494.8, "Total_shar": 136.5, "Total_roof": 173.8, "Gross_volu": 1900.7, "Is_Gross_v": "true", "Heated_vol": 1722.4, "Ridge_mean": 15.7, "Eaves_mean": 10.21, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.419, "Heated_are": 551.2, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 28390.0, "January_He": 4835.0, "February_H": 3448.0, "March_Heat": 2126.0, "April_Heat": 382.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 1008.0, "November_H": 3106.0, "December_H": 4708.0, "PV_potenti": 7.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212476976852015, 48.787936647258974, 0.0 ], [ 9.212351668508212, 48.787917285821642, 0.0 ], [ 9.212392524758597, 48.787801833920881, 0.0 ], [ 9.21251869400872, 48.787820812449112, 0.0 ], [ 9.212476976852015, 48.787936647258974, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000019fe", "Latitude": 48.78785, "Longitude": 9.21248, "X_coordina": 3515685.52, "Y_coordina": 5405619.22, "LOD": "LOD2", "Year_of_co": 2014, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 551.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 178.3, "Total_wall": 412.3, "Total_wa00": 0.0, "Total_outw": 494.8, "Total_shar": 136.5, "Total_roof": 173.8, "Gross_volu": 1900.7, "Is_Gross_v": "true", "Heated_vol": 1722.4, "Ridge_mean": 15.7, "Eaves_mean": 10.21, "Storey_num": 5, "Average_St": 2.9, "Number_of_": 7, "Number_o00": 17, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.419, "Heated_are": 551.2, "Mean_Uvalu": 0.39, "Specific_d": "15,8", "Specific_s": 35.7, "Total_Year": 28390.0, "January_He": 4835.0, "February_H": 3448.0, "March_Heat": 2126.0, "April_Heat": 382.0, "May_Heatin": 8.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 38.0, "October_He": 1008.0, "November_H": 3106.0, "December_H": 4708.0, "PV_potenti": 7.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212456967622936, 48.787890168462667, 14.7958 ], [ 9.212482887410632, 48.787894160911506, 12.5209 ], [ 9.212470530194585, 48.787929190992934, 12.4994 ], [ 9.212444610389827, 48.78792519854138, 14.7743 ], [ 9.212456967622936, 48.787890168462667, 14.7958 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00001910", "Latitude": 48.78853, "Longitude": 9.2127, "X_coordina": 3515701.16, "Y_coordina": 5405695.12, "LOD": "LOD2", "Year_of_co": 1975, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 97.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 42.0, "Total_wall": 58.1, "Total_wa00": 0.0, "Total_outw": 124.4, "Total_shar": 234.3, "Total_roof": 51.7, "Gross_volu": 346.7, "Is_Gross_v": "false", "Heated_vol": 304.8, "Ridge_mean": 9.8, "Eaves_mean": 6.75, "Storey_num": 3, "Average_St": 2.9, "Number_of_": 1, "Number_o00": 1, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.467, "Heated_are": 97.5, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 43.9, "Total_Year": 5827.0, "January_He": 1101.0, "February_H": 740.0, "March_Heat": 400.0, "April_Heat": 57.0, "May_Heatin": 1.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 7.0, "October_He": 199.0, "November_H": 694.0, "December_H": 1082.0, "PV_potenti": 1.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212710862524146, 48.788531620715666, 0.0 ], [ 9.212706558592503, 48.788575871102438, 0.0 ], [ 9.212650207320078, 48.788573457308679, 0.0 ], [ 9.212590997815147, 48.788570958840111, 0.0 ], [ 9.212595301847932, 48.788526708457425, 0.0 ], [ 9.212654239124321, 48.788529207426492, 0.0 ], [ 9.212710862524146, 48.788531620715666, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000015ab", "Latitude": 48.79424, "Longitude": 9.20218, "X_coordina": 3514926.55, "Y_coordina": 5406328.0, "LOD": "LOD2", "Year_of_co": 1985, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1077.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 325.0, "Total_wall": 1038.9, "Total_wa00": 0.0, "Total_outw": 1611.2, "Total_shar": 0.0, "Total_roof": 325.0, "Gross_volu": 2842.0, "Is_Gross_v": "false", "Heated_vol": 2842.0, "Ridge_mean": 9.5, "Eaves_mean": 9.55, "Storey_num": 4, "Average_St": 2.4, "Number_of_": 13, "Number_o00": 28, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.594, "Heated_are": 1077.1, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 39.6, "Total_Year": 59706.0, "January_He": 11076.0, "February_H": 7350.0, "March_Heat": 4016.0, "April_Heat": 624.0, "May_Heatin": 19.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 67.0, "October_He": 1858.0, "November_H": 6666.0, "December_H": 10969.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.202010286070664, 48.79429466899645, 0.0 ], [ 9.202036076170439, 48.79431116968783, 0.0 ], [ 9.202005404737273, 48.794333164843287, 0.0 ], [ 9.201976477383722, 48.794314961099943, 0.0 ], [ 9.202007152428697, 48.794293865181402, 0.0 ], [ 9.201972630395469, 48.79427207430841, 0.0 ], [ 9.202009536953081, 48.794243683651111, 0.0 ], [ 9.201995759052556, 48.794235884469479, 0.0 ], [ 9.201985579418539, 48.794242916362698, 0.0 ], [ 9.201953655313021, 48.794224088404647, 0.0 ], [ 9.201977946068272, 48.794206151014237, 0.0 ], [ 9.202010786070364, 48.794181903972451, 0.0 ], [ 9.20205719632404, 48.794147651595978, 0.0 ], [ 9.202310817150465, 48.794297468584865, 0.0 ], [ 9.202264000426865, 48.794332171394323, 0.0 ], [ 9.202232517515474, 48.794355426965254, 0.0 ], [ 9.202206055977486, 48.794375076768176, 0.0 ], [ 9.202174816201314, 48.79435723682932, 0.0 ], [ 9.202184992579859, 48.794349395613196, 0.0 ], [ 9.202172166991051, 48.79434150485725, 0.0 ], [ 9.202133086398474, 48.79437079861777, 0.0 ], [ 9.202096526668324, 48.794350000518016, 0.0 ], [ 9.202068159620723, 48.794369653633353, 0.0 ], [ 9.202036510861948, 48.794351634527516, 0.0 ], [ 9.202067451611939, 48.794328919502817, 0.0 ], [ 9.202093783275249, 48.794344699842419, 0.0 ], [ 9.202122283151871, 48.794324237175516, 0.0 ], [ 9.202097182205923, 48.794309893459499, 0.0 ], [ 9.202108173044138, 48.794301511279393, 0.0 ], [ 9.202074613440816, 48.79428214668399, 0.0 ], [ 9.202063617545511, 48.794289269939952, 0.0 ], [ 9.202037424913252, 48.794274208737882, 0.0 ], [ 9.202010286070664, 48.79429466899645, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000014cd", "Latitude": 48.79144, "Longitude": 9.19832, "X_coordina": 3514643.69, "Y_coordina": 5406015.82, "LOD": "LOD2", "Year_of_co": 2012, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 1118.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 271.0, "Total_wall": 712.6, "Total_wa00": 0.0, "Total_outw": 1084.2, "Total_shar": 47.3, "Total_roof": 349.5, "Gross_volu": 3693.3, "Is_Gross_v": "false", "Heated_vol": 3495.3, "Ridge_mean": 16.5, "Eaves_mean": 10.63, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.374, "Heated_are": 1118.5, "Mean_Uvalu": 0.44, "Specific_d": "24,8", "Specific_s": 42.3, "Total_Year": 75040.0, "January_He": 10903.0, "February_H": 7942.0, "March_Heat": 5390.0, "April_Heat": 1596.0, "May_Heatin": 142.0, "June_Heati": 6, "July_Heati": 1, "August_Hea": 2, "September_": 365.0, "October_He": 3016.0, "November_H": 7220.0, "December_H": 10674.0, "PV_potenti": 16.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19842817097552, 48.79143826973278, 0.0 ], [ 9.198325719485318, 48.791514881287767, 0.0 ], [ 9.198339633587407, 48.791523040371551, 0.0 ], [ 9.198307744094613, 48.791546745199959, 0.0 ], [ 9.198293420638207, 48.791538317046438, 0.0 ], [ 9.198255698088294, 48.791566887779055, 0.0 ], [ 9.198114374430455, 48.791483951665391, 0.0 ], [ 9.19828698136595, 48.791354794056325, 0.0 ], [ 9.19842817097552, 48.79143826973278, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000014cf", "Latitude": 48.79155, "Longitude": 9.19835, "X_coordina": 3514645.89, "Y_coordina": 5406027.81, "LOD": "LOD2", "Year_of_co": 2012, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 3065, "PrimaryUsa": "education", "PrimaryU00": 41.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 22.6, "Total_wall": 52.9, "Total_wa00": 0.0, "Total_outw": 113.5, "Total_shar": 47.3, "Total_roof": 22.6, "Gross_volu": 87.8, "Is_Gross_v": "false", "Heated_vol": 87.8, "Ridge_mean": 3.9, "Eaves_mean": 3.91, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 1.117, "Heated_are": 41.4, "Mean_Uvalu": 0.45, "Specific_d": "24,8", "Specific_s": 61.5, "Total_Year": 3572.0, "January_He": 592.0, "February_H": 419.0, "March_Heat": 279.0, "April_Heat": 82.0, "May_Heatin": 9.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 23.0, "October_He": 166.0, "November_H": 392.0, "December_H": 582.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19834784901826, 48.791570146189656, 0.0 ], [ 9.198310127184271, 48.791598896785899, 0.0 ], [ 9.198255698088294, 48.791566887779055, 0.0 ], [ 9.198293420638207, 48.791538317046438, 0.0 ], [ 9.198307744094613, 48.791546745199959, 0.0 ], [ 9.19834784901826, 48.791570146189656, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00001420", "Latitude": 48.78754, "Longitude": 9.20824, "X_coordina": 3515374.07, "Y_coordina": 5405583.52, "LOD": "LOD2", "Year_of_co": 1928, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 737.4, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 201.3, "Total_wall": 448.7, "Total_wa00": 0.0, "Total_outw": 615.7, "Total_shar": 328.4, "Total_roof": 274.0, "Gross_volu": 2919.3, "Is_Gross_v": "false", "Heated_vol": 2718.0, "Ridge_mean": 17.1, "Eaves_mean": 11.94, "Storey_num": 5, "Average_St": 3.2, "Number_of_": 12, "Number_o00": 21, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.33, "Heated_are": 737.4, "Mean_Uvalu": 0.56, "Specific_d": "15,8", "Specific_s": 46.1, "Total_Year": 45664.0, "January_He": 7942.0, "February_H": 5743.0, "March_Heat": 3977.0, "April_Heat": 1276.0, "May_Heatin": 83.0, "June_Heati": 1, "July_Heati": 0, "August_Hea": 0, "September_": 176.0, "October_He": 1937.0, "November_H": 5066.0, "December_H": 7784.0, "PV_potenti": 12.94 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.208091216360737, 48.787489392857367, 0.0 ], [ 9.208332510034511, 48.787525195830163, 0.0 ], [ 9.208314895705607, 48.787576664032365, 0.0 ], [ 9.208299163097733, 48.787622463636822, 0.0 ], [ 9.208058413696413, 48.787586749535095, 0.0 ], [ 9.208073873969022, 48.787540860531664, 0.0 ], [ 9.208091216360737, 48.787489392857367, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00001015", "Latitude": 48.78855, "Longitude": 9.20985, "X_coordina": 3515492.22, "Y_coordina": 5405696.29, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 94.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 46.6, "Total_wall": 55.8, "Total_wa00": 0.0, "Total_outw": 135.4, "Total_shar": 190.5, "Total_roof": 64.8, "Gross_volu": 340.2, "Is_Gross_v": "false", "Heated_vol": 293.6, "Ridge_mean": 9.1, "Eaves_mean": 5.44, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 4, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.528, "Heated_are": 94.0, "Mean_Uvalu": 0.49, "Specific_d": "15,8", "Specific_s": 48.2, "Total_Year": 6012.0, "January_He": 1148.0, "February_H": 777.0, "March_Heat": 436.0, "April_Heat": 70.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 9.0, "October_He": 222.0, "November_H": 731.0, "December_H": 1128.0, "PV_potenti": 1.77 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209807386017719, 48.788594857878628, 0.0 ], [ 9.209758673432669, 48.788596655165698, 0.0 ], [ 9.209757672090534, 48.788584966914847, 0.0 ], [ 9.209754087359684, 48.78854118062555, 0.0 ], [ 9.209754495624946, 48.788541179881932, 0.0 ], [ 9.20980239162602, 48.788539384084288, 0.0 ], [ 9.209856683028903, 48.7885373967653, 0.0 ], [ 9.209860860948835, 48.7885928720452, 0.0 ], [ 9.209807386017719, 48.788594857878628, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000fe3", "Latitude": 48.78851, "Longitude": 9.20941, "X_coordina": 3515460.04, "Y_coordina": 5405691.94, "LOD": "LOD2", "Year_of_co": 1950, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 81.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 40.5, "Total_wall": 46.4, "Total_wa00": 0.0, "Total_outw": 109.6, "Total_shar": 201.2, "Total_roof": 54.1, "Gross_volu": 295.6, "Is_Gross_v": "false", "Heated_vol": 255.1, "Ridge_mean": 9.1, "Eaves_mean": 5.53, "Storey_num": 3, "Average_St": 2.7, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.511, "Heated_are": 81.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 46.7, "Total_Year": 5102.0, "January_He": 963.0, "February_H": 656.0, "March_Heat": 370.0, "April_Heat": 60.0, "May_Heatin": 2.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 8.0, "October_He": 188.0, "November_H": 615.0, "December_H": 947.0, "PV_potenti": 1.79 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209313019876479, 48.788508081927901, 0.0 ], [ 9.20936622330723, 48.78850627666472, 0.0 ], [ 9.209422147752175, 48.788504286581478, 0.0 ], [ 9.209425738553033, 48.788549601572392, 0.0 ], [ 9.209369949398189, 48.7885514115641, 0.0 ], [ 9.209316201566088, 48.788553217818475, 0.0 ], [ 9.209315335667956, 48.788541349470229, 0.0 ], [ 9.209313019876479, 48.788508081927901, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000dfc", "Latitude": 48.78778, "Longitude": 9.20158, "X_coordina": 3514884.85, "Y_coordina": 5405609.98, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1123, "PrimaryUsa": "residential", "PrimaryU00": 873.7, "SecondaryU": "retail", "Secondar00": 168.1, "BuildingTy": "GMH", "Footprint_": 210.1, "Total_wall": 720.5, "Total_wa00": 0.0, "Total_outw": 1019.3, "Total_shar": 81.7, "Total_roof": 274.7, "Gross_volu": 3387.9, "Is_Gross_v": "false", "Heated_vol": 3255.7, "Ridge_mean": 19.0, "Eaves_mean": 14.14, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 17, "Number_o00": 38, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.366, "Heated_are": 1041.8, "Mean_Uvalu": 0.47, "Specific_d": "25,1", "Specific_s": 37.6, "Total_Year": 65280.0, "January_He": 9595.0, "February_H": 6846.0, "March_Heat": 4278.0, "April_Heat": 906.0, "May_Heatin": 31.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 103.0, "October_He": 2001.0, "November_H": 6006.0, "December_H": 9400.0, "PV_potenti": 12.33 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.201437947467834, 48.787830703437351, 0.0 ], [ 9.201402512119834, 48.7877835554943, 0.0 ], [ 9.201401280864426, 48.787781939021748, 0.0 ], [ 9.201580136863466, 48.787723265618936, 0.0 ], [ 9.201602613072694, 48.787728711616055, 0.0 ], [ 9.201676351318429, 48.787825340362033, 0.0 ], [ 9.201481181224095, 48.787888178946162, 0.0 ], [ 9.201437947467834, 48.787830703437351, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000b81", "Latitude": 48.78943, "Longitude": 9.19858, "X_coordina": 3514663.95, "Y_coordina": 5405791.94, "LOD": "LOD2", "Year_of_co": 1981, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 1079.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 179.6, "Total_wall": 375.2, "Total_wa00": 0.0, "Total_outw": 517.1, "Total_shar": 821.7, "Total_roof": 281.3, "Gross_volu": 3553.9, "Is_Gross_v": "false", "Heated_vol": 3374.3, "Ridge_mean": 22.9, "Eaves_mean": 14.33, "Storey_num": 8, "Average_St": 2.7, "Number_of_": 17, "Number_o00": 32, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.242, "Heated_are": 1079.8, "Mean_Uvalu": 0.46, "Specific_d": "15,8", "Specific_s": 25.9, "Total_Year": 45023.0, "January_He": 6904.0, "February_H": 4862.0, "March_Heat": 3192.0, "April_Heat": 804.0, "May_Heatin": 22.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 48.0, "October_He": 1219.0, "November_H": 4091.0, "December_H": 6778.0, "PV_potenti": 13.04 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.198655430221796, 48.789501822364926, 0.0 ], [ 9.198654005060526, 48.789485548645409, 0.0 ], [ 9.198567871124736, 48.78948866468172, 0.0 ], [ 9.198514802699982, 48.789490554650207, 0.0 ], [ 9.198425266824032, 48.789493766368054, 0.0 ], [ 9.198421826549595, 48.78944961979068, 0.0 ], [ 9.198418093181091, 48.789400168223303, 0.0 ], [ 9.198651321635619, 48.789391852845228, 0.0 ], [ 9.198655328834246, 48.789441663627315, 0.0 ], [ 9.19866005589958, 48.789501454690537, 0.0 ], [ 9.198660194120597, 48.789501993993902, 0.0 ], [ 9.198655430221796, 48.789501822364926, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000808", "Latitude": 48.78758, "Longitude": 9.19716, "X_coordina": 3514560.19, "Y_coordina": 5405585.9, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 740.7, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 153.3, "Total_wall": 625.0, "Total_wa00": 0.0, "Total_outw": 788.2, "Total_shar": 115.4, "Total_roof": 212.0, "Gross_volu": 2322.7, "Is_Gross_v": "false", "Heated_vol": 2314.8, "Ridge_mean": 18.4, "Eaves_mean": 9.78, "Storey_num": 7, "Average_St": 2.6, "Number_of_": 12, "Number_o00": 21, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.1, "Surface_ar": 0.427, "Heated_are": 740.7, "Mean_Uvalu": 0.45, "Specific_d": "15,8", "Specific_s": 38.2, "Total_Year": 39997.0, "January_He": 7013.0, "February_H": 4903.0, "March_Heat": 2989.0, "April_Heat": 582.0, "May_Heatin": 18.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 63.0, "October_He": 1419.0, "November_H": 4389.0, "December_H": 6888.0, "PV_potenti": 9.66 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197067902325676, 48.78765625937789, 0.0 ], [ 9.197035162087408, 48.787635992654394, 0.0 ], [ 9.197046559870635, 48.787627430403596, 0.0 ], [ 9.197002903563245, 48.787599718685058, 0.0 ], [ 9.197036015599181, 48.787575922185823, 0.0 ], [ 9.197072927091851, 48.787549331541115, 0.0 ], [ 9.197114859631206, 48.787519135343196, 0.0 ], [ 9.19723668306958, 48.787595182017846, 0.0 ], [ 9.197194884159869, 48.7876247485652, 0.0 ], [ 9.197124313838588, 48.787674507252959, 0.0 ], [ 9.197109308434586, 48.787665360724759, 0.0 ], [ 9.197080526291487, 48.787648054720009, 0.0 ], [ 9.197067902325676, 48.78765625937789, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000809", "Latitude": 48.7876, "Longitude": 9.19707, "X_coordina": 3514553.24, "Y_coordina": 5405588.62, "LOD": "LOD2", "Year_of_co": 1987, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 39.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 49.6, "Total_wall": 57.7, "Total_wa00": 0.0, "Total_outw": 182.7, "Total_shar": 163.3, "Total_roof": 49.6, "Gross_volu": 169.2, "Is_Gross_v": "false", "Heated_vol": 124.7, "Ridge_mean": 3.4, "Eaves_mean": 3.4, "Storey_num": 1, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.9, "Surface_ar": 1.049, "Heated_are": 39.9, "Mean_Uvalu": 0.41, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.197109308434586, 48.787665360724759, 0.0 ], [ 9.197081218887858, 48.787685911397205, 0.0 ], [ 9.196941389179463, 48.787598924668579, 0.0 ], [ 9.197005185204205, 48.78755682119332, 0.0 ], [ 9.197036015599181, 48.787575922185823, 0.0 ], [ 9.197002903563245, 48.787599718685058, 0.0 ], [ 9.197046559870635, 48.787627430403596, 0.0 ], [ 9.197035162087408, 48.787635992654394, 0.0 ], [ 9.197067902325676, 48.78765625937789, 0.0 ], [ 9.197080526291487, 48.787648054720009, 0.0 ], [ 9.197109308434586, 48.787665360724759, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000672", "Latitude": 48.79009, "Longitude": 9.20499, "X_coordina": 3515134.39, "Y_coordina": 5405866.52, "LOD": "LOD2", "Year_of_co": 1980, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 222.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 77.9, "Total_wall": 179.9, "Total_wa00": 0.0, "Total_outw": 300.6, "Total_shar": 213.0, "Total_roof": 84.5, "Gross_volu": 755.9, "Is_Gross_v": "false", "Heated_vol": 695.6, "Ridge_mean": 10.8, "Eaves_mean": 8.62, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 3, "Number_o00": 5, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.474, "Heated_are": 222.6, "Mean_Uvalu": 0.52, "Specific_d": "15,8", "Specific_s": 50.3, "Total_Year": 14734.0, "January_He": 2684.0, "February_H": 1949.0, "March_Heat": 1238.0, "April_Heat": 276.0, "May_Heatin": 11.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 37.0, "October_He": 622.0, "November_H": 1763.0, "December_H": 2628.0, "PV_potenti": 3.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.205030696002556, 48.7901114808149, 0.0 ], [ 9.204961904661879, 48.790162589968013, 0.0 ], [ 9.204953992599322, 48.790158017944833, 0.0 ], [ 9.204910475731703, 48.790132736923155, 0.0 ], [ 9.204857546182408, 48.790101987288416, 0.0 ], [ 9.204926200355532, 48.790050608670271, 0.0 ], [ 9.204979130258822, 48.790081448196744, 0.0 ], [ 9.20497940281034, 48.790081537635238, 0.0 ], [ 9.205030696002556, 48.7901114808149, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000673", "Latitude": 48.79014, "Longitude": 9.20505, "X_coordina": 3515138.69, "Y_coordina": 5405872.54, "LOD": "LOD2", "Year_of_co": 1955, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 41.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 50.6, "Total_wall": 36.2, "Total_wa00": 0.0, "Total_outw": 119.1, "Total_shar": 147.6, "Total_roof": 50.6, "Gross_volu": 171.2, "Is_Gross_v": "false", "Heated_vol": 129.7, "Ridge_mean": 3.4, "Eaves_mean": 3.37, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 1, "Number_o00": 2, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.8, "Surface_ar": 0.871, "Heated_are": 41.5, "Mean_Uvalu": 0.34, "Specific_d": "15,9", "Specific_s": 70.2, "Total_Year": 3574.0, "January_He": 671.0, "February_H": 496.0, "March_Heat": 339.0, "April_Heat": 95.0, "May_Heatin": 6.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 20.0, "October_He": 188.0, "November_H": 450.0, "December_H": 651.0, "PV_potenti": 2.17 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.20498210224045, 48.790209673998156, 0.0 ], [ 9.204927805778732, 48.790177488051164, 0.0 ], [ 9.204953992599322, 48.790158017944833, 0.0 ], [ 9.204961904661879, 48.790162589968013, 0.0 ], [ 9.205030696002556, 48.7901114808149, 0.0 ], [ 9.205077893646463, 48.790138283938163, 0.0 ], [ 9.205028777171542, 48.790174970311575, 0.0 ], [ 9.20498210224045, 48.790209673998156, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000024c", "Latitude": 48.79053, "Longitude": 9.19523, "X_coordina": 3514417.31, "Y_coordina": 5405913.53, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 1699.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 531.1, "Total_wall": 1056.4, "Total_wa00": 0.0, "Total_outw": 1675.5, "Total_shar": 534.1, "Total_roof": 531.1, "Gross_volu": 5702.8, "Is_Gross_v": "false", "Heated_vol": 5309.8, "Ridge_mean": 10.7, "Eaves_mean": 10.74, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.7, "Surface_ar": 0.385, "Heated_are": 1699.1, "Mean_Uvalu": 0.45, "Specific_d": "14,6", "Specific_s": 59.4, "Total_Year": 125801.0, "January_He": 22739.0, "February_H": 17056.0, "March_Heat": 12102.0, "April_Heat": 4160.0, "May_Heatin": 445.0, "June_Heati": 15, "July_Heati": 1, "August_Hea": 3, "September_": 975.0, "October_He": 6425.0, "November_H": 15017.0, "December_H": 22041.0, "PV_potenti": 24.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195127172417658, 48.790641522104536, 0.0 ], [ 9.195113465952247, 48.790651616774198, 0.0 ], [ 9.195046833635914, 48.790700738025343, 0.0 ], [ 9.195073842372999, 48.790716698678864, 0.0 ], [ 9.194993906814169, 48.790774654948315, 0.0 ], [ 9.194876604640346, 48.79070750073123, 0.0 ], [ 9.194885425353265, 48.790700921379546, 0.0 ], [ 9.194992093778103, 48.790622866954017, 0.0 ], [ 9.195205022750173, 48.790467118189433, 0.0 ], [ 9.195304633214185, 48.790394201081909, 0.0 ], [ 9.195305311936901, 48.790393750312674, 0.0 ], [ 9.195326482843797, 48.790378337465057, 0.0 ], [ 9.195409265225377, 48.790317768344984, 0.0 ], [ 9.195496838723024, 48.790369505635461, 0.0 ], [ 9.19545178247148, 48.790402224392714, 0.0 ], [ 9.195127172417658, 48.790641522104536, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000024d", "Latitude": 48.78996, "Longitude": 9.19475, "X_coordina": 3514382.07, "Y_coordina": 5405850.64, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 774.9, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 283.0, "Total_wall": 235.6, "Total_wa00": 0.0, "Total_outw": 414.5, "Total_shar": 404.2, "Total_roof": 283.0, "Gross_volu": 1859.8, "Is_Gross_v": "false", "Heated_vol": 1859.8, "Ridge_mean": 6.6, "Eaves_mean": 6.57, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.431, "Heated_are": 774.9, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 2.7, "Total_Year": 27543.0, "January_He": 823.0, "February_H": 367.0, "March_Heat": 57.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 2.0, "November_H": 137.0, "December_H": 694.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194878530856444, 48.790010049862282, 0.0 ], [ 9.194767113878514, 48.790091619244087, 0.0 ], [ 9.194531408904735, 48.789953175584884, 0.0 ], [ 9.194641328250325, 48.789871429113127, 0.0 ], [ 9.194667926745671, 48.78988703086295, 0.0 ], [ 9.194777320492431, 48.789950871504558, 0.0 ], [ 9.194799963341778, 48.789964141900064, 0.0 ], [ 9.194822606203063, 48.789977412291087, 0.0 ], [ 9.194878530856444, 48.790010049862282, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000024e", "Latitude": 48.79044, "Longitude": 9.19464, "X_coordina": 3514373.7, "Y_coordina": 5405903.59, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 1271.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 794.7, "Total_wall": 712.0, "Total_wa00": 0.0, "Total_outw": 1557.8, "Total_shar": 188.7, "Total_roof": 794.7, "Gross_volu": 4458.4, "Is_Gross_v": "false", "Heated_vol": 3973.4, "Ridge_mean": 5.6, "Eaves_mean": 5.61, "Storey_num": 2, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.536, "Heated_are": 1271.5, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 10.4, "Total_Year": 54980.0, "January_He": 4473.0, "February_H": 2319.0, "March_Heat": 689.0, "April_Heat": 35.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 67.0, "November_H": 1394.0, "December_H": 4223.0, "PV_potenti": 38.02 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194885425353265, 48.790700921379546, 0.0 ], [ 9.19419370934053, 48.790292308019389, 0.0 ], [ 9.194299699940919, 48.790214884837646, 0.0 ], [ 9.19455573140735, 48.790365704083989, 0.0 ], [ 9.194643576300871, 48.790417441563818, 0.0 ], [ 9.194933984245758, 48.790588524591186, 0.0 ], [ 9.194992093778103, 48.790622866954017, 0.0 ], [ 9.194885425353265, 48.790700921379546, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000024f", "Latitude": 48.79051, "Longitude": 9.19511, "X_coordina": 3514408.7, "Y_coordina": 5405911.46, "LOD": "LOD2", "Year_of_co": 1986, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2020, "PrimaryUsa": "office and administration", "PrimaryU00": 429.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 134.2, "Total_wall": 308.5, "Total_wa00": 0.0, "Total_outw": 472.6, "Total_shar": 418.1, "Total_roof": 134.2, "Gross_volu": 1345.9, "Is_Gross_v": "false", "Heated_vol": 1341.5, "Ridge_mean": 10.0, "Eaves_mean": 10.03, "Storey_num": 4, "Average_St": 2.5, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.0, "Surface_ar": 0.429, "Heated_are": 429.3, "Mean_Uvalu": 0.46, "Specific_d": "14,6", "Specific_s": 54.8, "Total_Year": 29805.0, "January_He": 5467.0, "February_H": 4008.0, "March_Heat": 2708.0, "April_Heat": 896.0, "May_Heatin": 108.0, "June_Heati": 4, "July_Heati": 0, "August_Hea": 1, "September_": 166.0, "October_He": 1331.0, "November_H": 3454.0, "December_H": 5393.0, "PV_potenti": 6.52 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195205022750173, 48.790467118189433, 0.0 ], [ 9.194992093778103, 48.790622866954017, 0.0 ], [ 9.194933984245758, 48.790588524591186, 0.0 ], [ 9.195145960597401, 48.790432777547409, 0.0 ], [ 9.195205022750173, 48.790467118189433, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000250", "Latitude": 48.79149, "Longitude": 9.19659, "X_coordina": 3514517.18, "Y_coordina": 5406020.76, "LOD": "LOD2", "Year_of_co": 1982, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2130, "PrimaryUsa": "retail", "PrimaryU00": 939.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 344.5, "Total_wall": 586.8, "Total_wa00": 0.0, "Total_outw": 1039.8, "Total_shar": 0.0, "Total_roof": 344.5, "Gross_volu": 2352.2, "Is_Gross_v": "false", "Heated_vol": 2352.2, "Ridge_mean": 6.8, "Eaves_mean": 6.83, "Storey_num": 3, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.542, "Heated_are": 939.3, "Mean_Uvalu": 0.41, "Specific_d": "73,0", "Specific_s": 40.4, "Total_Year": 106504.0, "January_He": 9283.0, "February_H": 6526.0, "March_Heat": 4157.0, "April_Heat": 1084.0, "May_Heatin": 79.0, "June_Heati": 2, "July_Heati": 0, "August_Hea": 0, "September_": 172.0, "October_He": 1920.0, "November_H": 5653.0, "December_H": 9047.0, "PV_potenti": 16.29 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196762306860636, 48.791568909623535, 0.0 ], [ 9.196742629443008, 48.791583420944107, 0.0 ], [ 9.196665685052954, 48.791640474017967, 0.0 ], [ 9.196337070091044, 48.791446889708311, 0.0 ], [ 9.196434646775506, 48.791375863499781, 0.0 ], [ 9.196762306860636, 48.791568909623535, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000251", "Latitude": 48.7908, "Longitude": 9.1964, "X_coordina": 3514503.01, "Y_coordina": 5405944.5, "LOD": "LOD2", "Year_of_co": 1963, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 8159.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 3073.1, "Total_wall": 2136.8, "Total_wa00": 0.0, "Total_outw": 4133.1, "Total_shar": 50.5, "Total_roof": 3499.4, "Gross_volu": 28570.9, "Is_Gross_v": "false", "Heated_vol": 25497.8, "Ridge_mean": 12.0, "Eaves_mean": 6.72, "Storey_num": 4, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.318, "Heated_are": 8159.3, "Mean_Uvalu": 0.44, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 187.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.19545178247148, 48.790402224392714, 0.0 ], [ 9.195496838723024, 48.790369505635461, 0.0 ], [ 9.195632000484304, 48.790269640719892, 0.0 ], [ 9.195666927408581, 48.790291972360663, 0.0 ], [ 9.195891597747762, 48.790426385898478, 0.0 ], [ 9.195886441241685, 48.790430261385872, 0.0 ], [ 9.19591276823016, 48.790445863308761, 0.0 ], [ 9.195918196573048, 48.7904418974341, 0.0 ], [ 9.196088297483591, 48.790542232438511, 0.0 ], [ 9.196448420278903, 48.790755457012878, 0.0 ], [ 9.196442990188908, 48.790758973297201, 0.0 ], [ 9.196467267677011, 48.790772420422016, 0.0 ], [ 9.196472422768894, 48.790768185216834, 0.0 ], [ 9.197004698310334, 48.791082637954403, 0.0 ], [ 9.196998591971484, 48.79108723450495, 0.0 ], [ 9.197022458663112, 48.791099962825946, 0.0 ], [ 9.197028430314257, 48.791095726199053, 0.0 ], [ 9.19725679021256, 48.791232109063834, 0.0 ], [ 9.197064232318066, 48.791375956823892, 0.0 ], [ 9.196989475242978, 48.791331033003758, 0.0 ], [ 9.197010643562207, 48.791314990388422, 0.0 ], [ 9.19549036646929, 48.790420053698234, 0.0 ], [ 9.195486296236643, 48.790423297858275, 0.0 ], [ 9.19545178247148, 48.790402224392714, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000252", "Latitude": 48.79108, "Longitude": 9.19575, "X_coordina": 3514455.18, "Y_coordina": 5405975.55, "LOD": "LOD2", "Year_of_co": 1983, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 7454.0, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 2269.1, "Total_wall": 2540.4, "Total_wa00": 0.0, "Total_outw": 3782.6, "Total_shar": 157.4, "Total_roof": 2269.1, "Gross_volu": 25562.8, "Is_Gross_v": "false", "Heated_vol": 23293.8, "Ridge_mean": 16.9, "Eaves_mean": 16.9, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.285, "Heated_are": 7454.0, "Mean_Uvalu": 0.33, "Specific_d": "32,9", "Specific_s": 2.4, "Total_Year": 262747.0, "January_He": 7102.0, "February_H": 3084.0, "March_Heat": 508.0, "April_Heat": 10.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 14.0, "November_H": 1057.0, "December_H": 6035.0, "PV_potenti": 109.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195210998274373, 48.791025174018252, 0.0 ], [ 9.195448484591065, 48.790849599987304, 0.0 ], [ 9.19546205529751, 48.790839595432203, 0.0 ], [ 9.195565734282388, 48.790762894405994, 0.0 ], [ 9.195608975175618, 48.790788269345526, 0.0 ], [ 9.195718920299958, 48.790853097306773, 0.0 ], [ 9.195719875061966, 48.790853635225716, 0.0 ], [ 9.195642112305958, 48.790910239396254, 0.0 ], [ 9.196197980990538, 48.791238054383356, 0.0 ], [ 9.196194995296977, 48.791240217636847, 0.0 ], [ 9.196047479191378, 48.791348287277451, 0.0 ], [ 9.195917876062987, 48.791443197406153, 0.0 ], [ 9.19536173054888, 48.791114302465978, 0.0 ], [ 9.195210998274373, 48.791025174018252, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000253", "Latitude": 48.79129, "Longitude": 9.1962, "X_coordina": 3514488.2, "Y_coordina": 5405999.12, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 194.3, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 107.2, "Total_wall": 138.0, "Total_wa00": 0.0, "Total_outw": 286.0, "Total_shar": 157.3, "Total_roof": 107.2, "Gross_volu": 502.7, "Is_Gross_v": "false", "Heated_vol": 502.7, "Ridge_mean": 4.7, "Eaves_mean": 4.69, "Storey_num": 2, "Average_St": 2.3, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.701, "Heated_are": 194.3, "Mean_Uvalu": 0.41, "Specific_d": "32,9", "Specific_s": 10.3, "Total_Year": 8380.0, "January_He": 698.0, "February_H": 338.0, "March_Heat": 83.0, "April_Heat": 3.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 9.0, "November_H": 216.0, "December_H": 651.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.196114866981185, 48.791388278460616, 0.0 ], [ 9.196047479191378, 48.791348287277451, 0.0 ], [ 9.196194995296977, 48.791240217636847, 0.0 ], [ 9.196261701526954, 48.791279940125293, 0.0 ], [ 9.196114866981185, 48.791388278460616, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000256", "Latitude": 48.78982, "Longitude": 9.19452, "X_coordina": 3514365.05, "Y_coordina": 5405835.48, "LOD": "LOD2", "Year_of_co": 1989, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2120, "PrimaryUsa": "industry", "PrimaryU00": 743.1, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 271.1, "Total_wall": 225.3, "Total_wa00": 0.0, "Total_outw": 403.2, "Total_shar": 393.6, "Total_roof": 271.1, "Gross_volu": 1751.0, "Is_Gross_v": "false", "Heated_vol": 1751.0, "Ridge_mean": 6.5, "Eaves_mean": 6.46, "Storey_num": 3, "Average_St": 2.2, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.438, "Heated_are": 743.1, "Mean_Uvalu": 0.37, "Specific_d": "32,9", "Specific_s": 2.3, "Total_Year": 26111.0, "January_He": 673.0, "February_H": 296.0, "March_Heat": 45.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 1.0, "November_H": 104.0, "December_H": 574.0, "PV_potenti": 13.03 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194510655144843, 48.789794855131724, 0.0 ], [ 9.194626460123795, 48.789862641727616, 0.0 ], [ 9.194641328250325, 48.789871429113127, 0.0 ], [ 9.194531408904735, 48.789953175584884, 0.0 ], [ 9.194304571344162, 48.789819932048857, 0.0 ], [ 9.194413946401301, 48.789738186710501, 0.0 ], [ 9.194470962039391, 48.789771542027921, 0.0 ], [ 9.194490740541571, 48.789783198696483, 0.0 ], [ 9.194510655144843, 48.789794855131724, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA0000025e", "Latitude": 48.79005, "Longitude": 9.19413, "X_coordina": 3514336.6, "Y_coordina": 5405860.28, "LOD": "LOD2", "Year_of_co": 2008, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 2112.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "MFH", "Footprint_": 729.8, "Total_wall": 1436.1, "Total_wa00": 0.0, "Total_outw": 2164.2, "Total_shar": 0.0, "Total_roof": 729.9, "Gross_volu": 7332.4, "Is_Gross_v": "false", "Heated_vol": 6602.6, "Ridge_mean": 14.6, "Eaves_mean": 14.57, "Storey_num": 5, "Average_St": 2.7, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.412, "Heated_are": 2112.8, "Mean_Uvalu": 0.38, "Specific_d": "32,9", "Specific_s": 7.0, "Total_Year": 84156.0, "January_He": 5191.0, "February_H": 2680.0, "March_Heat": 675.0, "April_Heat": 24.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 45.0, "November_H": 1381.0, "December_H": 4733.0, "PV_potenti": 33.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.194221771399221, 48.789911344214865, 0.0 ], [ 9.194223128504003, 48.789910352766015, 0.0 ], [ 9.194350785907107, 48.789981356896767, 0.0 ], [ 9.1941853895969, 48.790111305794333, 0.0 ], [ 9.194181047813327, 48.790114730213602, 0.0 ], [ 9.194153211563084, 48.790099301293829, 0.0 ], [ 9.194127311276448, 48.790120036385808, 0.0 ], [ 9.19417668166626, 48.790147110081058, 0.0 ], [ 9.194031500884936, 48.790261108182783, 0.0 ], [ 9.193904388978677, 48.790190462477725, 0.0 ], [ 9.193905881497216, 48.7901892909574, 0.0 ], [ 9.193822278111329, 48.790143121038994, 0.0 ], [ 9.194160807012796, 48.789877455891244, 0.0 ], [ 9.194221771399221, 48.789911344214865, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000001eb", "Latitude": 48.78797, "Longitude": 9.19999, "X_coordina": 3514767.97, "Y_coordina": 5405630.35, "LOD": "LOD2", "Year_of_co": 2011, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 570.5, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 137.8, "Total_wall": 306.8, "Total_wa00": 0.0, "Total_outw": 483.4, "Total_shar": 317.4, "Total_roof": 206.4, "Gross_volu": 1920.6, "Is_Gross_v": "false", "Heated_vol": 1782.7, "Ridge_mean": 16.8, "Eaves_mean": 11.38, "Storey_num": 6, "Average_St": 2.6, "Number_of_": 9, "Number_o00": 16, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.354, "Heated_are": 570.5, "Mean_Uvalu": 0.44, "Specific_d": "15,8", "Specific_s": 36.9, "Total_Year": 30076.0, "January_He": 4945.0, "February_H": 3690.0, "March_Heat": 2485.0, "April_Heat": 621.0, "May_Heatin": 20.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 65.0, "October_He": 1176.0, "November_H": 3216.0, "December_H": 4822.0, "PV_potenti": 9.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.200058055095374, 48.788010708178689, 0.0 ], [ 9.200021903468741, 48.788022730824927, 0.0 ], [ 9.199906381952092, 48.788061328825428, 0.0 ], [ 9.199839751838443, 48.78797188050887, 0.0 ], [ 9.19989588253509, 48.787953348736913, 0.0 ], [ 9.199940597255502, 48.787938703476534, 0.0 ], [ 9.199991427281269, 48.787921889410654, 0.0 ], [ 9.20002521978634, 48.787966882472134, 0.0 ], [ 9.200058055095374, 48.788010708178689, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000001ed", "Latitude": 48.78803, "Longitude": 9.20002, "X_coordina": 3514769.94, "Y_coordina": 5405637.47, "LOD": "LOD2", "Year_of_co": 1952, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2463, "PrimaryUsa": "non-heated", "PrimaryU00": 28.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 34.9, "Total_wall": 44.5, "Total_wa00": 0.0, "Total_outw": 135.3, "Total_shar": 69.4, "Total_roof": 34.9, "Gross_volu": 95.3, "Is_Gross_v": "false", "Heated_vol": 88.2, "Ridge_mean": 2.8, "Eaves_mean": 2.75, "Storey_num": 1, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NOT_HEATED", "Basement_c": 0.2, "Surface_ar": 1.236, "Heated_are": 28.2, "Mean_Uvalu": 0.39, "Specific_d": "0,0", "Specific_s": 0.0, "Total_Year": 0.0, "January_He": 0.0, "February_H": 0.0, "March_Heat": 0.0, "April_Heat": 0.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 0.0, "November_H": 0.0, "December_H": 0.0, "PV_potenti": 1.09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199906381952092, 48.788061328825428, 0.0 ], [ 9.200021903468741, 48.788022730824927, 0.0 ], [ 9.200045710587753, 48.788054882140237, 0.0 ], [ 9.199926358566808, 48.788088451089884, 0.0 ], [ 9.199906381952092, 48.788061328825428, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000001d6", "Latitude": 48.79302, "Longitude": 9.19944, "X_coordina": 3514725.52, "Y_coordina": 5406192.03, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 1207.8, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 579.9, "Total_wall": 553.7, "Total_wa00": 0.0, "Total_outw": 1080.5, "Total_shar": 110.0, "Total_roof": 732.6, "Gross_volu": 4354.4, "Is_Gross_v": "false", "Heated_vol": 3774.4, "Ridge_mean": 8.8, "Eaves_mean": 6.2, "Storey_num": 3, "Average_St": 2.6, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 1.0, "Surface_ar": 0.45, "Heated_are": 1207.8, "Mean_Uvalu": 0.48, "Specific_d": "32,9", "Specific_s": 10.7, "Total_Year": 52642.0, "January_He": 4451.0, "February_H": 2205.0, "March_Heat": 582.0, "April_Heat": 24.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 61.0, "November_H": 1400.0, "December_H": 4231.0, "PV_potenti": 38.51 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199207661263355, 48.79293199360837, 0.0 ], [ 9.199216753642844, 48.792925323534178, 0.0 ], [ 9.199276869816831, 48.792880707346384, 0.0 ], [ 9.199404830107172, 48.79295575188042, 0.0 ], [ 9.199649019329366, 48.793098846819667, 0.0 ], [ 9.199589449769793, 48.793144001793983, 0.0 ], [ 9.199580494214675, 48.793150851507342, 0.0 ], [ 9.199522417008696, 48.793194834853644, 0.0 ], [ 9.199507490814193, 48.793206191084849, 0.0 ], [ 9.19913356754128, 48.792986975142902, 0.0 ], [ 9.199148902056905, 48.792975618253557, 0.0 ], [ 9.199207661263355, 48.79293199360837, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA000001d7", "Latitude": 48.79287, "Longitude": 9.19942, "X_coordina": 3514724.34, "Y_coordina": 5406175.33, "LOD": "LOD2", "Year_of_co": 1962, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 2112, "PrimaryUsa": "industry", "PrimaryU00": 172.2, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "RH", "Footprint_": 93.5, "Total_wall": 109.4, "Total_wa00": 0.0, "Total_outw": 240.0, "Total_shar": 109.9, "Total_roof": 93.5, "Gross_volu": 373.0, "Is_Gross_v": "false", "Heated_vol": 373.0, "Ridge_mean": 4.0, "Eaves_mean": 3.99, "Storey_num": 2, "Average_St": 2.0, "Number_of_": 0, "Number_o00": 0, "Attic_Heat": "NO_ROOM", "Basement_H": "NO_ROOM", "Basement_c": 0.0, "Surface_ar": 0.795, "Heated_are": 172.2, "Mean_Uvalu": 0.39, "Specific_d": "32,9", "Specific_s": 6.3, "Total_Year": 6742.0, "January_He": 401.0, "February_H": 169.0, "March_Heat": 35.0, "April_Heat": 1.0, "May_Heatin": 0.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 0.0, "October_He": 3.0, "November_H": 92.0, "December_H": 382.0, "PV_potenti": 4.34 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.199344178171751, 48.7928307731855, 0.0 ], [ 9.199472274535347, 48.792905817409768, 0.0 ], [ 9.199404830107172, 48.79295575188042, 0.0 ], [ 9.199276869816831, 48.792880707346384, 0.0 ], [ 9.199344178171751, 48.7928307731855, 0.0 ] ] ] ] } },
    { "type": "Feature", "properties": { "gml_id": "DEBW522AA00000177", "Latitude": 48.78893, "Longitude": 9.19586, "X_coordina": 3514464.02, "Y_coordina": 5405735.73, "LOD": "LOD2", "Year_of_co": 1954, "Refurbishm": "MediumRefurbishment", "ALKIS_code": 1010, "PrimaryUsa": "residential", "PrimaryU00": 782.6, "SecondaryU": "none", "Secondar00": 0.0, "BuildingTy": "GMH", "Footprint_": 171.3, "Total_wall": 490.6, "Total_wa00": 0.0, "Total_outw": 711.0, "Total_shar": 291.8, "Total_roof": 213.6, "Gross_volu": 2542.1, "Is_Gross_v": "false", "Heated_vol": 2445.5, "Ridge_mean": 17.1, "Eaves_mean": 12.56, "Storey_num": 6, "Average_St": 2.8, "Number_of_": 13, "Number_o00": 23, "Attic_Heat": "HEATED", "Basement_H": "NOT_HEATED", "Basement_c": 0.6, "Surface_ar": 0.353, "Heated_are": 782.6, "Mean_Uvalu": 0.48, "Specific_d": "15,8", "Specific_s": 37.4, "Total_Year": 41635.0, "January_He": 7101.0, "February_H": 5110.0, "March_Heat": 3227.0, "April_Heat": 633.0, "May_Heatin": 15.0, "June_Heati": 0, "July_Heati": 0, "August_Hea": 0, "September_": 71.0, "October_He": 1586.0, "November_H": 4594.0, "December_H": 6901.0, "PV_potenti": 10.91 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.195912686028782, 48.78895654825498, 0.0 ], [ 9.195930616704745, 48.788982955299289, 0.0 ], [ 9.195858029482693, 48.789004840302063, 0.0 ], [ 9.195783402948773, 48.789027268268065, 0.0 ], [ 9.195740293307669, 48.788965294240448, 0.0 ], [ 9.195701973832463, 48.788910236176001, 0.0 ], [ 9.195777823285677, 48.788887356564892, 0.0 ], [ 9.195850818291852, 48.788865380995006, 0.0 ], [ 9.195912686028782, 48.78895654825498, 0.0 ] ] ] ] } }
    ]
    }